Need multiple every day organizers in one spot? This application is for you! Remember The Bananas is a full stack web application that gives users the opportunity to organize tasks of all sorts. This personalized organizer gives users the ability to add new lists, as well as add and delete individual tasks. Remember The Bananas comes with a search feature so that you can find just what you are looking for in no time at all. Feel free to check out the live site here.
- Clone the repo
git clone https://github.com/Bryant16/rememberTheSilk.git
- Download backend dependencies
cd rememberTheSilk/ && npm install
- Setup database in Postgres by creating a user
CREATE USER <user_name> WITH PASSWORD '<password>' CREATEDB;
- Setup database in Postgres by creating a database
CREATE DATABASE <database_name> WITH OWNER <user_you_just_created>;
- Create .env file based on the example.env file
touch .env
- Start the application
npm start
- Open browser to http://localhost:3000/