diff --git a/README.md b/README.md index ef21b3e..e2aba92 100644 --- a/README.md +++ b/README.md @@ -58,12 +58,12 @@ Deployment via Installer 8. Once you're happy with the settings, go ahead and start all the pool daemons, commands follow. ```bash -pm2 start init.js --name=blockManager -- --module=blockManager -pm2 start init.js --name=worker -- --module=worker -pm2 start init.js --name=payments -- --module=payments -pm2 start init.js --name=remoteShare -- --module=remoteShare -pm2 start init.js --name=longRunner -- --module=longRunner -pm2 start init.js --name=pool -- --module=pool +pm2 start init.js --name=blockManager --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=blockManager +pm2 start init.js --name=worker --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=worker +pm2 start init.js --name=payments --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=payments +pm2 start init.js --name=remoteShare --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=remoteShare +pm2 start init.js --name=longRunner --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=longRunner +pm2 start init.js --name=pool --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=pool pm2 restart api ``` diff --git a/deployment/deploy.bash b/deployment/deploy.bash index a68c78b..990b8da 100644 --- a/deployment/deploy.bash +++ b/deployment/deploy.bash @@ -87,5 +87,5 @@ pm2 install pm2-logrotate mysql -u root --password=$ROOT_SQL_PASS < deployment/base.sql mysql -u root --password=$ROOT_SQL_PASS pool -e "INSERT INTO pool.config (module, item, item_value, item_type, Item_desc) VALUES ('api', 'authKey', '`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`', 'string', 'Auth key sent with all Websocket frames for validation.')" mysql -u root --password=$ROOT_SQL_PASS pool -e "INSERT INTO pool.config (module, item, item_value, item_type, Item_desc) VALUES ('api', 'secKey', '`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`', 'string', 'HMAC key for Passwords. JWT Secret Key. Changing this will invalidate all current logins.')" -pm2 start init.js --name=api -- --module=api +pm2 start init.js --name=api --log-date-format="YYYY-MM-DD HH:mm Z" -- --module=api echo "You're setup! Please read the rest of the readme for the remainder of your setup and configuration. These steps include: Setting your Fee Address, Pool Address, Global Domain, and the Mailgun setup!" \ No newline at end of file