Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 483 Bytes

setup.md

File metadata and controls

22 lines (19 loc) · 483 Bytes

Setup

Requirements

# Clone repo and install deps
$ git clone [email protected]:InventiStudio/cryptomonitor-backend.git
$ cd cryptomonitor-backend
$ yarn
# Run postgres & create database
$ yarn db db:init # set db name in config/sequelize.json, tasks/db-init.sh and bitbucket-pipelines.yml
$ yarn db db:migrate:all && yarn db db:seed:all
# Run local server
$ yarn dev
$ open http://localhost:4000