Full Stack App with React and a REST API
This app has two parts: the React frontend, inside of /client, and the Express/Sequelize/SQLite backend, in /api.
To start the client-side app, cd into the client directory and run
npm install
followed by npm start
.
To start the api, cd into the API directory and run
npm install
npm run seed
npm start