开发者

Programmatically sync the db in Django

I'm trying to sync my db from a view, something like this:

from django import http
from django.core import management

def syncdb(request):
    management.call_command('syncdb')
    return http.HttpResponse('Database synced.')

The issue is, it will block the dev server by asking for user input from the terminal. How can I pass it the '--noinput' option to prevent askin开发者_开发百科g me anything?

I have other ways of marking users as super-user, so there's no need for the user input, but I really need to call syncdb (and flush) programmatically, without logging on to the server via ssh. Any help is appreciated.


management.call_command('syncdb', interactive=False)


Works like this (at least with Django 1.1.):

from django.core.management.commands import syncdb
syncdb.Command().execute(noinput=True)
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜