Skip to content

Commit

Permalink
settings: use port, that is defined in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
em92 committed Dec 16, 2023
1 parent 268f707 commit 41e5772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qllr/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
SUPPORTED_GAMETYPES = ("ad", "ca", "ctf", "ft", "tdm", "tdm2v2")
DATABASE_URL = str(config("DATABASE_URL", cast=URL))
HOST = config("HOST", default="127.0.0.1")
PORT = config("PORT", cast=int, default=7081)
PORT = config("PORT", cast=int, default=8000)
TRUSTED_PROXIES = config("TRUSTED_PROXIES", cast=CommaSeparatedStrings, default=[])
PLAYER_COUNT_PER_PAGE = config("PLAYER_COUNT_PER_PAGE", cast=int, default=10)
RUN_POST_PROCESS = config("RUN_POST_PROCESS", cast=bool, default=True)
Expand Down

0 comments on commit 41e5772

Please sign in to comment.