https://github.com/vinks/async_services
Concurent jobs queue via bull.js and Express as microservices
https://github.com/vinks/async_services
Last synced: over 1 year ago
JSON representation
Concurent jobs queue via bull.js and Express as microservices
- Host: GitHub
- URL: https://github.com/vinks/async_services
- Owner: vinks
- Created: 2017-01-31T21:07:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-01T08:07:28.000Z (over 9 years ago)
- Last Synced: 2025-01-11T01:26:25.521Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
Run the following commands:
```
git clone git@github.com:vinks/async_services.git
cd async_services
npm install
```
### Quickstart
For the quickest start, have [PM2](http://pm2.keymetrics.io) installed globally and then just type:
```
pm2 start async_services.json
```
End user interface will be available in [http://localhost:3000/view/a/b](http://localhost:3000/view/a/b) where a and b are job params
### Manual start
Run the admin interface:
```
node a_service/web
node b_service/web
node index
```