style
[redakcja.git] / deployment / environment_template.py
index 581b45c..0ba081f 100644 (file)
@@ -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',
+)