Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.19 KB

Deadlock Web UI

The web interface for rule management and status monitoring.

Dependencies Status

Using...

TL;DR for Deployment

  1. npm install
  2. set PORT and API_URL env vars (to something like 8000 and http://localhost:5000/)
  3. npm build
  4. node server

Development Quick Start

Note: This is the web front-end only. The API is server/deadapi.

  • requires node.js and npm
  • install dependencies: npm install
  • start prod server: node server (or your favorite Procfile thing)
  • dev server: run ./devserver.sh, open localhost:8080/webpack-dev-server/ and enjoy continuous rebuild-and-automatic-reload-with-sourcemaps-and-everything!
  • It will attempt to connect to the backend at the URL written in public/API_URL.conf. If using the prod server, you should instead set the API_URL environment variable.