Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 946 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 946 Bytes

Email backend

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

running it

just the easy way

  1. fill in config.json
  2. npm install
  3. npm start or npm run-script start-old
  4. Have a drink 🍺

perpetually

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.

related

License

Apache 2.0