Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 401 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 401 Bytes

Web-network

Steps to running locally

Start postgresdb on docker

First time

docker run -d --name github-db -p 54320:5432 -e POSTGRES_PASSWORD=github -e POSTGRES_DB=github -e POSTGRES_USER=github postgres:13

After that

docker start github-db

Execute Sequelize migrations

npm run migrate

And start the development server

npm run dev