# All of the environment variables present here use double underscores (__), NOT single underscores (_).
# The only exception is the `ASPNETCORE_URLS` environment variable, which uses single underscores.
# This is used to push data into Zenith Info from the game.
# `openssl rand -hex 64` is a good way to generate a random value. DO NOT CHECK THIS INTO GIT!
CONFIGURATION__AUTHTOKEN:"CHANGE-ME"
# This is used to configure the IP address and port that the application will listen on.
# 0.0.0.0 is used to listen on all available IP addresses.
# Alternatively, you can specify localhost or 127.0.0.1 to listen on only the local machine.
# Multiple IP address / port combinations can be specified, separated by semicolons.
# Example: http://0.0.0.0:8000;http://127.0.0.1:8000 - Listen on all available IP addresses on port 8000, as well as only on the local machine on port 8000. (Redundant)
ASPNETCORE_URLS:"http://0.0.0.0:8000"
# The only current valid value is `PostgresSQL`. This is used to determine which database type to use.