コード例 #1
0
def runserver():
    """Runs the Django development server"""

    print green("Running the development webserver...")
    denv = fabutils.dot_env()
    host = denv.get('SERVER_HOST', '0.0.0.0')
    port = denv.get('PORT', '8000')
    fabutils.manage_py('runserver %s:%s' % (host, port))
コード例 #2
0
ファイル: tasks.py プロジェクト: nanchenchen/django-showMaf
def runserver():
    """Runs the Django development server"""

    print green("Running the development webserver...")
    denv = fabutils.dot_env()
    host = denv.get('SERVER_HOST', '0.0.0.0')
    port = denv.get('PORT', '8000')
    fabutils.manage_py('runserver %s:%s' % (host, port))
コード例 #3
0
def print_env():
    """Print the local .env file contents"""
    denv = fabutils.dot_env()
    import pprint

    pprint.pprint(denv)
コード例 #4
0
ファイル: tasks.py プロジェクト: nanchenchen/django-showMaf
def print_env():
    """Print the local .env file contents"""
    denv = fabutils.dot_env()
    import pprint

    pprint.pprint(denv)