Skip to content

runetopic/website-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cec5577 · Jan 1, 2022

History

65 Commits
Dec 21, 2021
Dec 23, 2021
Jan 1, 2022
Dec 24, 2021
Dec 17, 2021
Dec 24, 2021
Dec 24, 2021
Dec 24, 2021
Dec 23, 2021
Dec 24, 2021
Dec 23, 2021
Dec 15, 2021
Dec 15, 2021
Dec 23, 2021

Repository files navigation

RuneTopic Website Backend API

Discord

Powered By

Example Configuration

For security reasons, we do not push our own. You will have to setup your own configuration file like the example provided below.

/resource/application.conf

ktor {
    development = true
    deployment {
        port = 8081
        port = ${?PORT}
        watch = [ classes, resources ]
    }
    application {
        modules = [ com.runetopic.ApplicationKt.module ]
    }
}

jwt {
    secret = a-generated-token-goes-here
}

mongodb {
    driver = "mongodb://localhost:27017"
}