我有一个使用 Django-Cms 2.4 及其其他依赖项构建的 Django 应用程序(仍在开发中),我遇到的问题是在部署到 AWS Beanstalk 环境期间,每当我向 INSTALLED_APPS 中添加新应用程序时,下面的 01_syncdb 命令都会失败设置.py。
在 .config 文件中
我在容器命令中有:
01_syncdb:
command: "django-admin.py syncdb --noinput"
leader_only = True
02_migrate:
command: "django-admin.py migrate --noinput"
leader_only = True
日志
2013-08-20 10:21:46,812 [DEBUG] (19029 MainThread) [commandWrapper.py-60] [root commandWrapper main] Command result: {'status': 'FAILURE', 'results': [{'status': 'FAILURE', 'config_set': u'Infra-EmbeddedPostBuild', 'returncode': 1, 'events': [], 'msg': 'Error occurred during build: Command 01_syncdb failed\n'}], 'api_version': '1.0'}
有什么问题?谢谢