X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3e82fe190f3d1fbfb7300a98ff1a3a0497d9e237..da0c65e6008cc1dbc88b05ed53553d70ec04e3fd:/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', +)