About | Built With | Requirements | Starting | Contact |
This repo contains the New Era Festival App.
Look up the project on Merlin.
The following tools were used in this project:
Before starting, you need to have GIT and NPM installed.
In the project directory, you can run:
# Clone this project
$ git clone https://github.com/alexiscrocilla/HELPFEST
# Access
$ cd HELPFEST
# install dependencies
npm install
# dev with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
# run unit tests
npm run unit
# run e2e tests
npm run e2e
# run all tests
npm testYou can provide custom port-numbers via the environment variable PORT:
# run dev-server on port 1337
PORT=1337 node run dev
# run e2e tests on port 8888
PORT=8888 node run e2e