Simple CRM based on FastAPI and SQLModel
Configure the following environment variables:
DATABASE_URL=postgresql+asyncpg://sample_user:sample_pass@db:5432/db_name
SECRET_KEY=random_hash
POSTGRES_USER=sample_user
POSTGRES_PASSWORD=sample_pass
POSTGRES_DB=db_name
docker-compose up -d --build
docker-compose run backend alembic upgrade head