Description...
Link?...
To get started in development mode, just clone the repository and run:
npm install
npm run dev
If you wanted to run this site in production run:
npm install
npm run build
npm start
You should run the the build step again any time you make changes to pages or components.
Install server
npm install -g json-server
Start server (port 3000 by default)
json-server --watch db.json
If you configure a .env file (just copy .env.default over to '.env' and fill in the options) you can configure a range of options.
See the AUTHENTICATION.md for how to set up oAuth if you want to do that.
To deploy on Zeit's cloud platform now
just install it, clone this repository and run now
in the working directory:
npm install -g now
now
If you configure a .env file now
will include it when deploying if you use the -E option to deploy:
now -E
If you configure a .env file with value for LOGS_SECRET and deploy with now -E
you can use now-logs to view logs remotely.
npm install -g now-logs
now-logs my-secret-value
Note: There are currently no application specific tests, beyond style checking.