Adaptable emergency response dispatch software
Clone the repository, run the build script, and create the database.
git clone https://github.com/ArtOfCode-/patches
cd patches
./build.sh
mysql -u root -p < database.sqlTo run the server for development, I suggest using nodemon, which is not included as
a dependency in this project. You'll need to install it first with npm i -g nodemon, then run the server with:
DEBUG=app:* nodemon build/app.jsnpm-watch is also included in this project to let you build views and assets as you develop;
run npm-watch in a terminal before you start to make use of this.
To run the server for production, you can use simple Node, and turn much of the debug logging off:
DEBUG=app:base node build/app.jsContributions are welcome. Please open an issue first so that I know what you're working on and can discuss it if necessary.