Merge #74 debug is the new go

This commit is contained in:
Ralph Bean
2016-10-13 14:55:19 +00:00
2 changed files with 8 additions and 0 deletions

View File

@@ -382,6 +382,12 @@ states 'done' or 'ready'.
Development
===========
``Logging``
----------
If you're running rida from scm then the DevConfiguration from config.py which contains LOG_LEVEL=debug should get applied. If you're having trouble just change LOG_LEVEL in BaseConfiguration.
See more about it in rida/__init__.py config.from_object()
``Docker``
----------

View File

@@ -56,6 +56,7 @@ class BaseConfiguration(object):
class DevConfiguration(BaseConfiguration):
LOG_BACKEND = 'console'
LOG_LEVEL = 'debug'
HOST = '0.0.0.0'
FAS_USERNAME = 'put your fas username here'
#FAS_PASSWORD = 'put your fas password here....'
@@ -64,6 +65,7 @@ class DevConfiguration(BaseConfiguration):
class TestConfiguration(BaseConfiguration):
LOG_BACKEND = 'console'
LOG_LEVEL = 'debug'
SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:'
DEBUG = True