File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ cd flaskBlog/app
3434uv run app.py
3535```
3636
37- Visit ` http://localhost:5000 ` in your browser.
37+ Visit ` http://localhost:2306 ` in your browser.
3838
3939### Default Admin Account
4040- Username: ` admin `
Original file line number Diff line number Diff line change 33"""
44
55# Import necessary modules from the modules module
6- from modules import secrets , socket
6+ from modules import secrets
77
88# Name of the Flask application
99APP_NAME = "flaskBlog" # (str)
1515APP_ROOT_PATH = "." # (str)
1616
1717# Hostname or IP address for the Flask application
18- APP_HOST = socket . gethostbyname ( socket . gethostname ()) # (str)
18+ APP_HOST = "localhost" # (str)
1919
2020# Port number for the Flask application
21- APP_PORT = 5000 # (int)
21+ APP_PORT = 2306 # (int)
2222
2323# Toggle debug mode for the Flask application
2424DEBUG_MODE = False # (bool)
You can’t perform that action at this time.
0 commit comments