Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 887 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 887 Bytes

React/Redux To Do List App

To Do List App built with react/redux front end and node, express, postgresql back end.

Getting Started

  1. Clone this reposistory, cd into each folder (client, server, styles) and run npm install to install dependencies individually
  2. Create .env file inside server following the formart of .example.env
  3. Install knex globally to access Knex CLI commands
  4. Run migrations knex migrate:latest and seed files knex 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/