I'm using node + sequlize js on aws beanstalk.
I've several questions related to deploying process:
Thank you for your help
Here you can find the answer: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html
container_commands: collectstatic: command: "django-admin.py collectstatic --noinput" 01syncdb: command: "django-admin.py syncdb --noinput" leader_only: true 02migrate: command: "django-admin.py migrate" leader_only: true 99customize: command: "scripts/customize.sh"