You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plateforme intranet complete pour l'association GameCloud (Epitech Benin).
Backend API + Frontend Next.js avec auth, RBAC, skills tree, activites.
Quick Start
1. Base de donnees
psql -U postgres -c "CREATE DATABASE gamecloud;"
2. Backend
cd backend
npm install
cp .env.example .env
# Editez .env avec votre mot de passe PostgreSQL
npx prisma migrate dev --name init
node prisma/seed.js
npm run dev
# → http://localhost:3001
3. Frontend
cd frontend
npm install
npm run dev
# → http://localhost:3000