Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 57 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,57 @@
# TaskTracker
Production-ready TaskTracker backend built with FastAPI, PostgreSQL, Docker, Kubernetes, Terraform and CI/CD practices. Includes migrations, structured JSON logging, health checks, automated testing and GitHub workflow automation.
# TaskTracker Backend

TaskTracker is a FastAPI-based backend application for managing users and tasks.

---

## Tech Stack

- FastAPI
- PostgreSQL
- SQLAlchemy
- Pytest
- Docker (Upcoming)
- Kubernetes (Upcoming)

---

## Features

### Users

- Create User
- Get All Users
- Get User By ID
- Duplicate Email Validation

### Tasks

- Create Task
- Get All Tasks
- Get Task By ID
- Update Task
- Delete Task
- Owner Validation
- Status Validation

### Health Checks

- /healthz
- /readyz

---

## Project Structure

```text
app/
├── api/
├── core/
├── db/
├── middleware/
├── models/
├── schemas/
└── services/

tests/
docs/
Loading