mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
52c0e071da
Includes: * First pass at Elastic Beanstalk integration * Gets code and elasticache working * Very rudimentary documentation * Includes post hook cleanup
18 lines
755 B
Plaintext
18 lines
755 B
Plaintext
container_commands:
|
|
01_migrate:
|
|
command: "source /opt/python/run/venv/bin/activate && python manage.py migrate"
|
|
leader_only: True
|
|
02_collectstatic:
|
|
command: "source /opt/python/run/venv/bin/activate && python manage.py collectstatic --noinput"
|
|
option_settings:
|
|
"aws:elasticbeanstalk:application:environment":
|
|
DJANGO_SETTINGS_MODULE: "config.settings.production"
|
|
REDIS_ENDPOINT_ADDRESS: '`{ "Fn::GetAtt" : [ "MyElastiCache", "RedisEndpoint.Address"]}`'
|
|
REDIS_PORT: '`{ "Fn::GetAtt" : [ "MyElastiCache", "RedisEndpoint.Port"]}`'
|
|
"aws:elasticbeanstalk:container:python":
|
|
WSGIPath: "config/wsgi.py"
|
|
NumProcesses: 3
|
|
NumThreads: 20
|
|
"aws:elasticbeanstalk:container:python:staticfiles":
|
|
"/static/": "www/static/"
|