Remove old EB deployment config

This commit is contained in:
Christopher C. Wells 2021-09-25 14:36:11 -07:00
parent d78130bbff
commit d8a14c37ec
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
option_settings:
aws:elasticbeanstalk:application:environment:
DJANGO_SETTINGS_MODULE: babybuddy.settings.eb
SECRET_KEY: CHANGETOSOMETHINGRANDOM
TIME_ZONE: UTC
aws:elasticbeanstalk:container:python:staticfiles:
'/static/': 'static/'
aws:elasticbeanstalk:container:python:
WSGIPath: babybuddy/wsgi.py
container_commands:
01_pipenv_install:
command: 'pip install pipenv'
03_requirements_lock:
env:
LC_ALL: en_US.utf8
LANG: en_US.utf8
command: 'pipenv lock'
03_requirements_install:
env:
LC_ALL: en_US.utf8
LANG: en_US.utf8
command: 'pipenv install --system --deploy'
04_migrate:
command: "python manage.py migrate"
leader_only: true
05_createcachetable:
command: "python manage.py createcachetable"
leader_only: true