To download and start the project you need to run the following commands:
# Clone the project into your local pc
git clone https://github.com/amargopastor-codealong/ca-cors-api
# Move into it
cd ca-cors-api
# Install all the necessary dependencies (you can check them in the package.json)
npm install
Once you've set up the project you're ready to run develop the app. Here there are different options.
# Start server
npm start || npm run start
# Seed database
yarn run seed
- 🍍