updated readme + just
CI / frontend (push) Failing after 0s
CI / backend (push) Failing after 1s

This commit is contained in:
2026-05-21 04:29:43 +02:00
parent 37f88f5ad1
commit 0da5b24dc3
5 changed files with 177 additions and 128 deletions
+26
View File
@@ -0,0 +1,26 @@
default:
@just --list
# Install dependencies for both backend and frontend
setup:
cd backend && cargo fetch
cd frontend && npm install
# Build backend and frontend
build:
cd backend && cargo build
cd frontend && npm run build
# Run tests for both backend and frontend
test:
cd backend && cargo test
cd frontend && npm test
# Start the stack with Docker Compose
docker:
docker compose up --build
# Run backend and frontend for development
dev:
@echo "Starting backend and frontend..."
(cd backend && cargo run) & (cd frontend && npm run dev) & wait