Skip to content

Commit

Permalink
fix app host
Browse files Browse the repository at this point in the history
  • Loading branch information
dkashkarev committed Jan 16, 2024
1 parent d84eec6 commit 4eede0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

APP_NAME = "flaskblog" # NAME OF THE FLASK APP.
APP_ROOT_PATH = "." # THE PATH TO THE ROOT OF THE APP FILES.
APP_HOST = "localhost"
APP_HOST = socket.gethostbyname(socket.gethostname()) # OR USE "localhost"
APP_PORT = 8080 # FLASK APP'S HOST/PORT.
DEBUG_MODE = True # TURN ON/OFF FLASK DEBUG MODE.
TAILWIND_UI = False # SELECT TAILWIND-UI/STANDARD-UI.
Expand Down

0 comments on commit 4eede0e

Please sign in to comment.