Skip to content

aintp3d0/GameProfile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note

Brief: Diagram

Core

cd core
# Generate migration
uv run alembic revision --autogenerate -m "msg"
# Apply generated migration
uv run alembic upgrade +1
# Apply all migrations
uv run alembic upgrade head

Backend

cd backend
uv run litestar --app main:app run -r

Frontend

cd frontend
npm run dev

Directory Structure

# tree . --dirsfirst -d -I node_modules -I data -I __pycache__ -L 2
.
├── backend
│   └── api
├── core
│   ├── alembic
│   └── core
└── frontend
    ├── public
    └── src