1.2.1 • Published 7 years ago

aurora-demo-frontend v1.2.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Aurora Core Frontend Demo

Demo implementation of a frontend conforming to Aurora specifications.

Uses the Aurora application assembly framework provided by aurora-core to render a frontend application as specified by an Aurora api.

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