You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
393 B
13 lines
393 B
#!/bin/bash
|
|
|
|
MINIO_ROOT_USER="webapp"
|
|
MINIO_ROOT_PASSWORD="302888b9-c3d8-40f5-92de-6a3c57186af5"
|
|
export MINIO_ROOT_USER MINIO_ROOT_PASSWORD
|
|
|
|
forever start --killSignal=SIGINT app/workers/host-services.js
|
|
forever start --killSignal=SIGINT app/workers/reeeper.js
|
|
|
|
minio server ./data/minio --console-address ":9001"
|
|
|
|
forever stop app/workers/reeeper.js
|
|
forever stop app/workers/host-services.js
|
|
|