You can check the application in production here: https://gratibox-gules.vercel.app/
- Clone the backend repository
git clone https://github.com/glappsmobile/gratibox-back- Clone the frontend repository
git clone https://github.com/glappsmobile/gratibox- Install NPM packages in frontend AND backend folders
npm install- Create the dev and test database using PostgreSQL
CREATE DATABASE gratibox_test;
CREATE DATABASE gratibox_dev;- Import DATABASE.sql to both databases (it's located at the root of the backend repository)
pg_dump gratibox_dev < path/to/DATABASE.sql
pg_dump gratibox_test < path/to/DATABASE.sqlTo start the development server, run:
npm run start:devTo start the frontend, run:
npm start