Web application for browsing results produced by sm-engine.
- Clone the repository with
--recursive
flag. - Run
yarn install
- Create
conf.js
using the providedconf.js.template
(used by the backend, all secrets are kept here) - Create
src/clientConfig.json
using the provided template (this is used by the frontend) - Run
node deref_schema.js > src/assets/metadata_schema.json
(FIXME: do it through webpack)
NODE_ENV=development nodemon server.js
This will take care of hot reloading after both server and client code changes.
First, execute yarn run build
to get the minified bundles in the dist/
directory.
Then set NODE_ENV
accordingly and run server.js
, e.g.
NODE_ENV=production forever start -l forever.log -o out.log -e err.log -c "nodemon --exitcrash" server.js