container_commands:
01_migrate:
command: "source /var/app/venv/*/bin/activate && python3 manage.py migrate"
leader_only: true
option_settings:
aws:elasticbeanstalk:application:environment:
DJANGO_SETTINGS_MODULE: ebdjango.settings
nano .ebextentions/db-migrate.config
DJANGO_SETTINGS_MODULE: project-name.settings
02_createsuperuser:
command: "echo "from django.contrib.auth.models import User; User.objects.create_superuser('vipin', 'vyvipinyadav998@gmail.com', 'django1234')" | python manage.py shell"
leader_only: true