10

カスタム設定のコマンド内でrunserverを実行しようとしています。ただし、設定は読み込まれません。

from django.core.management.base import BaseCommand
from django.core.management import call_command
from django.core.management import setup_environ, ManagementUtility

import settings_api

setup_environ(settings_api)

class Command(BaseCommand):
    help = "Local API to retrieve realtime quotes"

    def handle(self, *args, **options):
        if not settings_api.DEBUG:
            call_command('runserver',  '127.0.0.1:8002')
        else:
            call_command('runserver',  '0.0.0.0:8002')

出力は次のとおりです。

Used API settings
Used API settings
Validating models...

0 errors found
Django version 1.4b1, using settings 'site.settings'
Development server is running at http://0.0.0.0:8002/
Quit the server with CONTROL-C.
4

2 に答える 2

19

runserver渡されない限り、デフォルト設定を強制します--settings=。カスタム設定が必要な場合は、別のWSGIコンテナー(または、自分で作成した組み込みのコンテナー)を使用してください。

于 2012-07-25T07:40:17.543 に答える
14

Ignaciosの回答は、私に正しい方向を示しました。カスタム設定パラメータを使用してコマンドを実行すると、解決されました。

./manage.py command --settings=settings_api

詳細はこちら

于 2012-07-25T07:51:36.150 に答える