我的项目正处于早期开发阶段。我经常删除数据库和运行 manage.py syncdb
从头开始建立我的应用程序。
不幸的是,这种情况总会出现:
You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no):
然后你要提供一个用户名,有效的电子邮件地址和密码。这是单调乏味的。我已经厌倦了键入 test\nx@x.com\ntest\ntest\n
。
如何在运行 manage.py syncdb
时自动跳过此步骤并以编程方式创建用户?