fix: default webapp host
This commit is contained in:
parent
94eb6c3b68
commit
eb0121b787
2
app.py
2
app.py
|
|
@ -27,7 +27,7 @@ def main():
|
||||||
# Configuration for uvicorn
|
# Configuration for uvicorn
|
||||||
config = {
|
config = {
|
||||||
"app": "webapp.main:app",
|
"app": "webapp.main:app",
|
||||||
"host": "0.0.0.0",
|
"host": "localhost",
|
||||||
"port": 8000,
|
"port": 8000,
|
||||||
"reload": True, # Enable auto-reload for development
|
"reload": True, # Enable auto-reload for development
|
||||||
"reload_dirs": [str(project_root)], # Watch for changes in project directory
|
"reload_dirs": [str(project_root)], # Watch for changes in project directory
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue