File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Template for building FastAPI Asynchronous applications with PostgreSQL
99 - Migration with Alembic
1010 - PGADMIN4 for Graphical Database Visualization
1111 - Asynchronous
12+ - Support SQLmodel
1213
1314## Here are the steps to follow to run the program:
1415After cloning the repository, go to it.
@@ -20,10 +21,10 @@ After cloning the repository, go to it.
2021
2122 2. RUN FRIST MIGRATION
2223 ```
23- docker compose exec app alembic revision --autogenerate -m "first migration"
24- docker compose exec app alembic upgrade head
24+ docker compose exec app uv run alembic revision --autogenerate -m "first migration"
25+ docker compose exec app uv run alembic upgrade head
2526 ```
26- 3. Please turn on the LISTEN Docs app. `0.0.0.0:8000 /docs`
27+ 3. Please turn on the LISTEN Docs app. `0.0.0.0:8001 /docs`
2728
2829
2930
@@ -33,6 +34,8 @@ After cloning the repository, go to it.
3334
34353536 password: admin
37+
38+ Please turn on the LISTEN Docs app. `0.0.0.0:5050`
3639
3740 5. EXAMPLE
3841 
You can’t perform that action at this time.
0 commit comments