Start the database using Docker Compose:
docker compose --file ./docker-compose.dev.yml upAvailable on http://localhost:8080
user: root
password: root Navigate to the server directory and start the development server:
cd server
npm run devNavigate to the client directory and start the development client:
cd client
npm run devNavigate to the server directory and seed the database:
npm run db:seedGenerate migration file:
npx drizzle-kit generate
Push migration to database:
npx drizzle-kit push