Added basic frontend setup

This commit is contained in:
GW_MC
2025-12-02 19:18:14 +08:00
parent 6b73b64a3a
commit 27173c01da
13 changed files with 4927 additions and 0 deletions

View File

@@ -40,3 +40,15 @@ migrate *args:
generate-entity:
# delegate to cli
just cli db:migrate_and_generate --output-path ../../public/database/src/generated/entities
build-frontend:
# build frontend assets
cd apps/frontend && \
pnpm build
build-backend:
# build backend server
cd apps/api && \
cargo build --release
build: build-frontend build-backend