Skip to content

Commit 757c68a

Browse files
committed
Use consistent arguments passing
1 parent f3d0726 commit 757c68a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"args": [
1313
"--factory",
1414
"--reload",
15-
"--host", "0.0.0.0",
15+
"--host=0.0.0.0",
1616
"--log-config=config/debug-logger.yml",
17-
"--timeout-graceful-shutdown", "10",
17+
"--timeout-graceful-shutdown=10",
1818
"sample_fastapi:init_app",
1919
],
2020
"jinja": true,

scripts/dev-launch.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
@echo off
44

5-
python3 -m uvicorn --factory --reload --host 0.0.0.0 --log-config=config/debug-logger.yml --timeout-graceful-shutdown=10 sample_fastapi:init_app
5+
python3 -m uvicorn --factory --reload --host=0.0.0.0 --log-config=config/debug-logger.yml --timeout-graceful-shutdown=10 sample_fastapi:init_app

scripts/dev-launch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# Launch development server
44

5-
python3 -m uvicorn --factory --reload --host 0.0.0.0 --log-config=config/debug-logger.yml --timeout-graceful-shutdown=10 sample_fastapi:init_app
5+
python3 -m uvicorn --factory --reload --host=0.0.0.0 --log-config=config/debug-logger.yml --timeout-graceful-shutdown=10 sample_fastapi:init_app

0 commit comments

Comments
 (0)