runetopic / website-backend

The backend of the RuneTopic website.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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"
}

About

The backend of the RuneTopic website.

License:MIT License


Languages

Language:Kotlin 92.5%Language:TOML 3.9%Language:YAML 3.1%Language:Dockerfile 0.6%