2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 23:48:24 +00:00

Remove nodemon

This commit is contained in:
Pratik Vyas 2015-08-17 12:07:28 -07:00
parent f4e868a114
commit dc903916a2

View File

@ -128,7 +128,7 @@ def setup_procfile(with_celery_broker=False, with_watch=False, bench='.'):
if with_watch:
procfile_contents['watch'] = "bench watch"
if frappe_version > 5:
procfile_contents['socketio'] = "./node_modules/.bin/nodemon apps/frappe/socketio.js"
procfile_contents['socketio'] = "node apps/frappe/socketio.js"
procfile = '\n'.join(["{0}: {1}".format(k, v) for k, v in procfile_contents.items()])