Skip to content

qf-jonathan/taskman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Taskman

This project implements a basic task management system using FastAPI, PostgreSQL, and Next.js.

Requirements

  • Docker.
  • uv for Python package and environment management.
  • Python for the backend.
  • Node.js for the frontend.

Running with Docker Compose

Execute the following commands to start the stack:

docker compose build
docker compose up -d

Running Locally

Database

We can create a local PostgreSQL database with Docker, run this on the root directory of the project:

docker run --name local-development-postgres --env-file .env -p 5432:5432 -d postgres

Backend

Inside the backend directory, run:

uv sync
uv run alembic upgrade head
uv run fastapi run --reload app/main.py

Frontend

Inside the frontend directory, run:

npm install
npm run build
npm start

Explore the project:

The app backend is running at http://localhost:8000, and the frontend is running at http://localhost:3000.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published