chore: addition of the initial skeleton
This commit is contained in:
0
.env.sample
Normal file
0
.env.sample
Normal file
2
.gitignore
vendored
2
.gitignore
vendored
@@ -174,3 +174,5 @@ cython_debug/
|
|||||||
# PyPI configuration file
|
# PyPI configuration file
|
||||||
.pypirc
|
.pypirc
|
||||||
|
|
||||||
|
# vscode folder
|
||||||
|
.vscode/
|
||||||
|
|||||||
7
MokPyo.code-workspace
Normal file
7
MokPyo.code-workspace
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
0
app/__init__.py
Normal file
0
app/__init__.py
Normal file
0
app/api/v1/__init__.py
Normal file
0
app/api/v1/__init__.py
Normal file
0
app/api/v1/endpoints.py
Normal file
0
app/api/v1/endpoints.py
Normal file
0
app/core/__init__.py
Normal file
0
app/core/__init__.py
Normal file
0
app/core/config.py
Normal file
0
app/core/config.py
Normal file
0
app/core/security.py
Normal file
0
app/core/security.py
Normal file
0
app/db/__init__.py
Normal file
0
app/db/__init__.py
Normal file
0
app/db/engine.py
Normal file
0
app/db/engine.py
Normal file
0
app/db/session.py
Normal file
0
app/db/session.py
Normal file
0
app/main.py
Normal file
0
app/main.py
Normal file
0
app/models.py
Normal file
0
app/models.py
Normal file
0
app/static/assets/js/app.js
Normal file
0
app/static/assets/js/app.js
Normal file
0
app/static/index.html
Normal file
0
app/static/index.html
Normal file
0
mokpyo.service
Normal file
0
mokpyo.service
Normal file
13
requirements.txt
Normal file
13
requirements.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
fastapi[all]
|
||||||
|
uvicorn[standard]
|
||||||
|
sqlmodel
|
||||||
|
alembic
|
||||||
|
passlib[bcrypt]
|
||||||
|
pydantic-settings
|
||||||
|
ruff
|
||||||
|
black
|
||||||
|
isort
|
||||||
|
pytest
|
||||||
|
pytest-asyncio
|
||||||
|
httpx
|
||||||
|
gunicorn
|
||||||
Reference in New Issue
Block a user