Skip to content

Commit

Permalink
feat(api): Update API port to 80
Browse files Browse the repository at this point in the history
- Updated the API port from 8000 to 80 in the docker-compose.yaml file and default.toml configuration file.
  • Loading branch information
SakuraIsayeki committed Jul 21, 2023
1 parent 27a9565 commit 789aba8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -369,3 +369,5 @@ WowsKarma.Web/**/*.razor.css
wowskarma.app/pnpm-lock.yaml

.store/

wowskarma.api.minimap/main.py
2 changes: 1 addition & 1 deletion wowskarma_api_minimap/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
context: .
dockerfile: Dockerfile.dev
ports:
- "8000:8000"
- "8000:80"
environment:
- ENVVAR_PREFIX_FOR_DYNACONF=WOWSKARMA_API_MINIMAP
- WOWSKARMA_API_MINIMAP_ENV=development
Expand Down
2 changes: 1 addition & 1 deletion wowskarma_api_minimap/src/default.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ACCESS_TOKEN_EXPIRE_MINUTES = 30
REFRESH_TOKEN_EXPIRE_MINUTES = 600

[default.server]
port = 8000
port = 80
host = "127.0.0.1"
log_level = "info"
reload = false
Expand Down

0 comments on commit 789aba8

Please sign in to comment.