chore: addition of the initial skeleton

This commit is contained in:
Lino Mallevaey
2025-08-17 18:10:10 +02:00
parent fd3c88c192
commit ff5026b8f7
18 changed files with 22 additions and 0 deletions

0
.env.sample Normal file
View File

2
.gitignore vendored
View File

@@ -174,3 +174,5 @@ cython_debug/
# PyPI configuration file
.pypirc
# vscode folder
.vscode/

7
MokPyo.code-workspace Normal file
View File

@@ -0,0 +1,7 @@
{
"folders": [
{
"path": "."
}
]
}

0
app/__init__.py Normal file
View File

0
app/api/v1/__init__.py Normal file
View File

0
app/api/v1/endpoints.py Normal file
View File

0
app/core/__init__.py Normal file
View File

0
app/core/config.py Normal file
View File

0
app/core/security.py Normal file
View File

0
app/db/__init__.py Normal file
View File

0
app/db/engine.py Normal file
View File

0
app/db/session.py Normal file
View File

0
app/main.py Normal file
View File

0
app/models.py Normal file
View File

View File

0
app/static/index.html Normal file
View File

0
mokpyo.service Normal file
View File

13
requirements.txt Normal file
View File

@@ -0,0 +1,13 @@
fastapi[all]
uvicorn[standard]
sqlmodel
alembic
passlib[bcrypt]
pydantic-settings
ruff
black
isort
pytest
pytest-asyncio
httpx
gunicorn