X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/132297f0be27da544304733bd24da32282310235..1c4c468783e5f380324c29ebc3b2c452da8cc2a0:/deployment/environment_template.py diff --git a/deployment/environment_template.py b/deployment/environment_template.py index 581b45c6..0ba081f6 100644 --- a/deployment/environment_template.py +++ b/deployment/environment_template.py @@ -1,14 +1,15 @@ +# -*- coding: utf-8 -*- from fnpdjango.deploy import DebianGunicorn from base import Environment env1 = Environment( - host = '', - user = '', - app_path = '', - services = [ + host='', + user='', + app_path='', + services=[ DebianGunicorn('') ], - node_bin_path = '/usr/bin', - npm_bin = 'npm', -) \ No newline at end of file + node_bin_path='/usr/bin', + npm_bin='npm', +)