Repository frontend https://github.com/lthonny/trello_clone_frontend
- Node + Express
- PostgreSQL
- JWT + PASSPORT
Rename
.env.test.example to .env.test
.env.production.example to .env.production
.env.development.example to .env.development
Goggle authorization will not work on non-custom ports, since they are registered in the GOOGLE API SERVICES.
npm run start:test
npm ci
POSTGRESQL
docker container run -d --name=trello -p 5431:5432 -e POSTGRES_PASSWORD=secret -e PGDATA=/pgdata -v [PATH TO]:/pgdata postgres
[PATH TO] - the path where you created the folder to store the container
npm run db:create
create a database inside container and tables
npm run start