在结构文件中使用Django设置

时间:2012-02-02 21:25:45

标签: django fabric

我想在我的Django设置文件中迭代INSTALLED_APPS,如下所示:

@task
def test_app
    print settings.INSTALLED_APPS

如何在fabfile中访问我的设置文件?

感谢。

1 个答案:

答案 0 :(得分:14)

记录在案:http://docs.fabfile.org/en/latest/api/contrib/django.html

from fabric.contrib import django

django.settings_module('myproject.settings')
from django.conf import settings