To Do List App built with react/redux front end and node, express, postgresql back end.
- Clone this reposistory, cd into each folder (client, server, styles) and run
npm install
to install dependencies individually - Create .env file inside server following the formart of .example.env
- Install knex globally to access Knex CLI commands
- Run migrations
knex migrate:latest
and seed filesknex seed:run
To start the express server:
cd server
npm start
To start the client server:
cd client
npm start
To compile the style sheets, run the following commands, then open /styles/src/main.scss in your code editor and perform a save.
cd styles
npm start
You are all set, open the web app on your browser: http://localhost:9000/