+# -*- 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',
+)