create database ien
git clone <project_url>
cd website
npm install
npm run migrate
PORT=3000
NODE_ENV=development
DB_PASSWORD=password
You can now populate the db yourself or alternatively, here's a snapshot of the db that you can use:
psql -U postgres
(psql#) ien < https://s3.amazonaws.com/iota-ien/ien_dump.sql
(if you have trouble with the last step then ask in the telegram group for help)
npm start
(Alternatively you may install nodemon globally with npm i -g nodemon
, you don't have to restart the server every time you write some code and want to test it)