This app gives ability to list and merge Github pull requests
Demo: https://containous-codetest.matthieuh.now.sh
- Create a github oauth app to get a github app id/secret filling http://localhost:3000/auth as callback url
- Create/fill
/client/.env
and/backend/.env
based on.env.example
files - On
client
folder runyarn dev
- On
server
folder runyarn dev
An alternative is using now dev
cli to have exact same behaviour locally than in prod:
- Create a github oauth app to get a github app id/secret filling http://localhost:3000/auth as callback url
- Create/fill
/client/.env.build
and/backend/.env
based on.env(*).example
files - On
client
folder runnow dev --listen 3000
- On
server
folder runnow dev --listen 8080
An 2nd alternative is using docker
running: docker compose up -d
- Add
now
secrets usingnow secrets add @containous-codetest-gh-id <value>
andnow secrets add @containous-codetest-gh-secret <value>
commands - On
server
folder runnow --prod
- On
client
folder runnow --prod