Live Demo: planningpoker.simonalmers.dev
A React/Next.js application for managing agile projects with realtime Scrum Poker sessions.
The frontend consumes the Planning Poker API found here: PlanningPoker-API
Clone frontend repo into project
directory
git clone git@github.com:SimonAlmers/planningpoker-be.git project
Change into the project
directory
cd project
Add .env
file in the root of the project dir
touch .env
Add env variables to .env
file:
To obtain the correct values for the .env file please follow this guide: Firebase Realtime Database Setup
API_BASE_URL=http://localhost:8080
FIREBASE_API_KEY=***
FIREBASE_AUTH_DOMAIN=***
FIREBASE_DATABASE_URL=***
FIREBASE_PROJECT_ID=***
FIREBASE_STORAGE_BUCKET=***
FIREBASE_MESSAGING_SENDER_ID=***
FIREBASE_APP_ID=***
Install required packages:
npm i
Run migrations on your local database
npm run dev