To view an example of the application, simply go to: https://www.vegansausagerollfinder.co.uk/
This application was built using the latest version of NodeJS LTS and PostgreSQL at the time. These were as follows:
- NodeJS v10.15.0
- PostgreSQL 11.0
- Get VSRF code
git clone https://github.com/jackcutting/vsrf.git
- Install dependencies
cd vsrf
npm install
cd client
npm install
cd ../
- Init the database
Rename .env.sample to .env and enter your database connection details. Then run:
npm run migrate
- Start the server
npm start
- Start the client
cd client
npm start
- Open in browser (if it doesn't automatically)
open http://localhost:3000