Note: this is a work in progress, and not yet a deployed backend.
The email backend is deployed on uberspace and mostly hosts the addition of clients to employers. It's written in node.js. Use your own Mailgun key 😄, you fill this in in your own config.json
, just like config.example.json
- fill in
config.json
npm install
npm start
ornpm run-script start-old
- Have a drink 🍺
any way to keep a process alive will work. My perferred way is this:
$ nohup npm run-script start-old &
to stop you have to do ps aux
and then find the PID of either npm
or node
. You can kill it with kill -9 THEPID
.
Apache 2.0