-
Create a new github app at https://github.com/settings/apps
- Add the client id and client secret keys for the app to server/config/default.json file
-
Start the localstack service for dynamodb and redis servers using docker
- Run
docker-compose up localstack redis
- Run
-
Start the backend node server
- Run
cd server
- Run
npm install
- Run
npm run debug
- Run
-
Start the frontend react web app
- Run
cd web-app
- Run
npm install
- Run
npm start
- Run
- Add the client id and client secret keys for the github app to server/config/dockerdev.json
- Start all containers using docker-compose
- Run
docker-compose up
- Run