Pioneer is a web app that creates a reusable retro board for team retrospectives.
This is the frontend application. The required backend server (which provides both a RESTful API and a websocket server) can be found at github.com/rob-lowcock/pioneer-node.
- Download the repo and run
npm install
- Duplicate example.env and rename it to
.env.local
. For local development you don't need to change the details unless you're running the API server on a different port. - Run
npm run dev
to start the development server
- Duplicate example.env and rename it to
.env.production.local
. For production you need to set the URL for where you're serving the API. - Run
npm run build
to build the static assets. - Deploy the contents of the
dist
folder to your production server (for ease, you might want this to be thepublic
folder of your pioneer-node installation).