commit 10b0c33ce70b167da99d972317173cda94854dfc Author: Madiwka3 Date: Wed Aug 30 13:09:45 2023 +0600 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b10ad9c --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vscode +venv +__pycache__ \ No newline at end of file diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/main.py b/app/main.py new file mode 100644 index 0000000..43ab2db --- /dev/null +++ b/app/main.py @@ -0,0 +1,8 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def root(): + return {"message": "Hello World!"} diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..926b95a --- /dev/null +++ b/readme.md @@ -0,0 +1,11 @@ +#VMS Backend + +**goals to be met**: + + +#Let's keep updating this readme.md file as we complete our tasks \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9edf7d7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +fastapi[all] \ No newline at end of file