A reproduction of Trello using a fullstack JavaScript stack.
Live Demo: https://chuckstaskboards.herokuapp.com/
+ npm
+ PostgreSQL
Install modules
npm install
Edit config/config.json
file for your Postgres database details, then run the server
npm run server
For unique signed cookies, create a .env
in the root directory
touch .env
In the .env file add
SECRET=123123
Change to client directory
cd client/
Install modules
npm install
Next is to edit the fetch url in src/actions/constents/database
to your server's address (or ip address
and port
) eg.
export const database = "http://127.0.0.1:3001";
Then run the react development server
npm start
- React - The front facing web framework used
- Express - The server side framework used
- PostgreSQL - The SQL database used
- Chuck Michael - Initial work - chuckinabox
This project is licensed under the MIT License - see the LICENSE file for details