Skip to content
This repository was archived by the owner on Jul 11, 2019. It is now read-only.

Latest commit

 

History

History
32 lines (26 loc) · 699 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 699 Bytes

Aurora Core Frontend Demo

Demo implementation of a frontend conforming to aurora-core specifications.

Install dependencies

Development shellscript example:

#!/bin/sh
export PORT=3000
export HOSTNAME="localhost"
export DEBUG="*,-babel"
export NODE_ENV="development"
export API_URL="http://localhost:3001"

npm run develop

Production shellscript example:

#!/bin/sh
export PORT=3000
export HOSTNAME="localhost"
export DEBUG="*,-babel"
export NODE_ENV="production"
export API_URL="http://localhost:3001"

npm run build && npm start