Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 845 Bytes

README.md

File metadata and controls

53 lines (38 loc) · 845 Bytes

Task Manager

Link to the website: Click to view website

Create .env file like this in server folder

cd server
DATABASE_HOST=ep-icy-leaf-a4q6qgvr-pooler.us-east-1.aws.neon.tech
DATABASE_PORT=5432
DATABASE_USERNAME=default
DATABASE_PASSWORD=uJliQh2YoV7O
DATABASE_NAME=verceldb
PGADMIN_DEFAULT_EMAIL=admin@admin.com
PGADMIN_DEFAULT_PASSWORD=pgadmin4
POSTGRES_PASSWORD=uJliQh2YoV7O
POSTGRES_URL=postgres://default:uJliQh2YoV7O@ep-icy-leaf-a4q6qgvr-pooler.us-east-1.aws.neon.tech/verceldb?sslmode=require

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Run client

cd client
npm i
npm run  start