Refactor
parents
Showing
Dockerfile
0 → 100644
alembic.ini
0 → 100644
alembic/README
0 → 100644
alembic/env.py
0 → 100644
alembic/script.py.mako
0 → 100644
docker-compose.yml
0 → 100644
generate.sh
0 → 100755
main.py
0 → 100644
requirements.txt
0 → 100644
| # Web Framework | ||
| fastapi | ||
| uvicorn[standard] | ||
| # Database and ORM | ||
| sqlalchemy | ||
| pydantic_settings | ||
| alembic | ||
| # PostgreSQL Driver | ||
| psycopg2-binary | ||
| asyncpg | ||
| # Authentication | ||
| passlib[bcrypt] | ||
| python-jose[cryptography] | ||
| # Other | ||
| python-multipart | ||
| \ No newline at end of file |
src/application/__init__.py
0 → 100644
src/config.py
0 → 100644
src/dependencies.py
0 → 100644
src/domain/__init__.py
0 → 100644
src/domain/entities/user.py
0 → 100644
src/domain/ports/__init__.py
0 → 100644
src/main.py
0 → 100644
Please register or sign in to comment