Browse Source

🔧 change int to string from conf

main
Galimede 6 years ago
parent
commit
3d980ef7ad
  1. 4
      conduit/settings.py

4
conduit/settings.py

@ -25,8 +25,8 @@ class Config(object):
'http://localhost:4200',
'http://0.0.0.0:4000',
'http://localhost:4000',
'http://0.0.0.0:' + os.environ.get('$PORT', 8080),
'https://0.0.0.0:' + os.environ.get('$PORT', 8080),
'http://0.0.0.0:' + os.environ.get('$PORT', '8080'),
'https://0.0.0.0:' + os.environ.get('$PORT', '8080'),
os.environ.get('$BACK_PROD_URL'),
os.environ.get('FRONT_PROD_URL'),
]

Loading…
Cancel
Save