Instructions can be found here
- Fetch the project on your local machine
$ git clone https://gitlab.com/askalia/sequence-app.git $ cd /path/to/sequence-app
- copy env file I gave you into project folder
$ cp /path/to/download-folder/env-file-downloaded ./ make sure env file is named ".env.dev"
- make sure node v10 or above is installed
$ node -v otherwise install nvm $ nvm install 10 $ nvm use 10
- install yarn which is faster thant npm to fetch dependencies
$ npm i -g yarn
- install NPM dependances for node.js
$ yarn install
- run the web-app
$ yarn start
- run the web-app with debug mode
$ yarn run start:dev
- Enjoy :)