Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

aws django create superuser

# go to https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html#python-django-update-app
# copy the code 
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
# on terminal run 
nano .ebextentions/db-migrate.config
# paste the above copied code and change DJANGO_SETTINGS_MODULE to
DJANGO_SETTINGS_MODULE: project-name.settings
# now create superusesr using following code
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
#save this file and run "eb deploy" on terminal
Source by www.delftstack.com #
 
PREVIOUS NEXT
Tagged: #aws #django #create #superuser
ADD COMMENT
Topic
Name
6+1 =