Skip to content

Commit

Permalink
Update schema.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tejaksha authored May 30, 2023
1 parent 86deccf commit b668627
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions schema.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
mkdir myapp
cd myapp
mkdir app tests
mkdir app tests docs
touch .env README.md requirements.txt
cd app
mkdir api info models services
mkdir api info models services utils
touch __init__.py database.py main.py
cd api
touch __init__.py
Expand All @@ -16,7 +16,11 @@ touch __init__.py
cd ..
cd services
touch __init__.py
cd ..
cd utils
touch __init__.py
cd ../..

cat << EOF >> README.md
Command to Run the FastAPI
Expand All @@ -43,5 +47,3 @@ fastapi
uvicorn
load_dotenv
EOF


0 comments on commit b668627

Please sign in to comment.