- Clone or fork this repo
- Follow backend server instructions
- Follow frontend server instructions
- Go to back folder
$ cd back
- Install dependencies
$ npm install
- Set env variables with your database info and your preferred port. There's an example .env file you can use.
$ mv .evn.example .env
- Start local server
$ npm start
or
$ nodemon
- Go to front folder
$ cd front
- Install dependencies
$ yarn install
- Start local server (the backend server url is set to
localhost:3001
by default. You can set an env variable namedREACT_APP_URL
to change it)
$ yarn start