我想在我的Django设置文件中迭代INSTALLED_APPS,如下所示:
@task
def test_app
print settings.INSTALLED_APPS
如何在fabfile中访问我的设置文件?
感谢。
答案 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