PDF and HTML document-to-text conversion queuing service
- MongoDB - ensure you have a mongo server running
- Node - ensure you have node version 7.8.0 installed
- clone the repo to a suitable directory
- cd into the directory
- npm install -g gulp bower
- npm install
- bower install
- ensure you know your mongo db url and the port you want to run the server on and pass them as environment variables:
MONGO_URL=mongo_db_url
EXPRESS_PORT=server_port
NODE_ENV=production
npm run build && npm start
- docker build -t proselytize:latest .
- docker run
-d -p server_address:8080
-e NODE_ENV=production
-e MONGO_URL=mongo_db_url
proselytize