vk-09857 /
fast_api_practice
FastAPI backend practice with PostgreSQL, SQLAlchemy, Redis, JWT authentication, Alembic, Docker, and scalable REST API development.
65/100 healthLoading repository data…
jandaghi14 / repository
A REST API for managing users and tasks, built with FastAPI, SQLAlchemy, SQLite, and Alembic database migrations.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A REST API for managing users and tasks, built with FastAPI, SQLAlchemy, SQLite, and Alembic database migrations.
├── main.py
├── DataAccess/
│ ├── database.py
│ └── models.py
├── Business/
│ ├── crud.py
│ └── schemas.py
├── alembic/
│ └── versions/
├── requirements.txt
└── README.md
pip install -r requirements.txt
alembic upgrade head
uvicorn main:app --reload
http://127.0.0.1:8000/docs| Method | Endpoint | Description |
|---|---|---|
| POST | /app/users/ | Create a new user |
| POST | /app/users/{user_id}/tasks | Create a task for a user |
| GET | /app/tasks/{user_id} | Get all tasks for a user |
| PUT | /app/tasks/{task_id} | Update a task |
| DELETE | /app/tasks/{task_id} | Delete a task |
Selected from shared topics, language and repository description—not editorial ratings.
vk-09857 /
FastAPI backend practice with PostgreSQL, SQLAlchemy, Redis, JWT authentication, Alembic, Docker, and scalable REST API development.
65/100 healthvitorhbech /
REST API for helpdesk ticket management. FastAPI, PostgreSQL, SQLAlchemy, Alembic
52/100 healthDonovan-Nudrak /
Production-oriented e-commerce REST API featuring JWT authentication, Redis caching, PostgreSQL, pgvector semantic search, and Gemini-powered RAG.
prakratis /
Production-ready FastAPI backend implementing AES-128 Fernet encryption at-rest, automated TTL record expiration, and SlowAPI rate-limiting. Scalable architecture using SQLModel and Alembic migrations.
55/100 healthVladM-Sashev /
REST API built with FastAPI, PostgreSQL, SQLAlchemy, JWT Authentication, Alembic migrations, Neon Database, and Render deployment.
55/100 healthsohamkhore /
Production-style Expense Tracker REST API built with FastAPI, PostgreSQL, SQLAlchemy, Docker, JWT Authentication, Alembic and Redis.
63/100 health