├── .ebextensions ├── 01-main.config ├── 03-ec2.config └── 04_rds.config ├── .gitignore ├── Dockerfile ├── Dockerrun.aws.json ├── README.md ├── application.py ├── authentication ├── __init__.py ├── admin.py ├── api_urls.py ├── api_views.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── initadmin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150529_1716.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── templates │ ├── authentication │ │ ├── detail.html │ │ ├── form.html │ │ └── initialized.html │ └── registration │ │ ├── login.html │ │ ├── logout.html │ │ └── password_change.html ├── tests.py ├── urls.py └── views.py ├── docker-compose.yml ├── fabfile.py ├── local_requirements.txt ├── manage.py ├── myproject ├── __init__.py ├── main │ ├── __init__.py │ ├── admin.py │ ├── api_views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150529_1716.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── templates │ │ └── main │ │ │ ├── about.html │ │ │ ├── index.html │ │ │ └── landing.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── static │ └── js │ │ └── contact_me.js ├── templates │ ├── base.html │ └── robots.txt ├── urls.py └── wsgi.py.bak ├── requirements.txt ├── runserver.sh └── settings ├── __init__.py ├── common.py ├── dev-local.py └── production.py /.ebextensions/01-main.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/.ebextensions/01-main.config -------------------------------------------------------------------------------- /.ebextensions/03-ec2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/.ebextensions/03-ec2.config -------------------------------------------------------------------------------- /.ebextensions/04_rds.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/.ebextensions/04_rds.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/Dockerrun.aws.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/README.md -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/application.py -------------------------------------------------------------------------------- /authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/admin.py -------------------------------------------------------------------------------- /authentication/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/api_urls.py -------------------------------------------------------------------------------- /authentication/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/api_views.py -------------------------------------------------------------------------------- /authentication/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/forms.py -------------------------------------------------------------------------------- /authentication/management/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'dkarchmer' 2 | -------------------------------------------------------------------------------- /authentication/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'dkarchmer' 2 | -------------------------------------------------------------------------------- /authentication/management/commands/initadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/management/commands/initadmin.py -------------------------------------------------------------------------------- /authentication/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/migrations/0001_initial.py -------------------------------------------------------------------------------- /authentication/migrations/0002_auto_20150529_1716.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/migrations/0002_auto_20150529_1716.py -------------------------------------------------------------------------------- /authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/models.py -------------------------------------------------------------------------------- /authentication/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/permissions.py -------------------------------------------------------------------------------- /authentication/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/serializers.py -------------------------------------------------------------------------------- /authentication/templates/authentication/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/templates/authentication/detail.html -------------------------------------------------------------------------------- /authentication/templates/authentication/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/templates/authentication/form.html -------------------------------------------------------------------------------- /authentication/templates/authentication/initialized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/templates/authentication/initialized.html -------------------------------------------------------------------------------- /authentication/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/templates/registration/login.html -------------------------------------------------------------------------------- /authentication/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/templates/registration/logout.html -------------------------------------------------------------------------------- /authentication/templates/registration/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/templates/registration/password_change.html -------------------------------------------------------------------------------- /authentication/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/tests.py -------------------------------------------------------------------------------- /authentication/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/urls.py -------------------------------------------------------------------------------- /authentication/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/authentication/views.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/fabfile.py -------------------------------------------------------------------------------- /local_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/local_requirements.txt -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/manage.py -------------------------------------------------------------------------------- /myproject/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'dkarchmer' 2 | -------------------------------------------------------------------------------- /myproject/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/main/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/admin.py -------------------------------------------------------------------------------- /myproject/main/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/api_views.py -------------------------------------------------------------------------------- /myproject/main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/forms.py -------------------------------------------------------------------------------- /myproject/main/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/migrations/0001_initial.py -------------------------------------------------------------------------------- /myproject/main/migrations/0002_auto_20150529_1716.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/migrations/0002_auto_20150529_1716.py -------------------------------------------------------------------------------- /myproject/main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/models.py -------------------------------------------------------------------------------- /myproject/main/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/permissions.py -------------------------------------------------------------------------------- /myproject/main/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/serializers.py -------------------------------------------------------------------------------- /myproject/main/templates/main/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/templates/main/about.html -------------------------------------------------------------------------------- /myproject/main/templates/main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/templates/main/index.html -------------------------------------------------------------------------------- /myproject/main/templates/main/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/templates/main/landing.html -------------------------------------------------------------------------------- /myproject/main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/tests.py -------------------------------------------------------------------------------- /myproject/main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/urls.py -------------------------------------------------------------------------------- /myproject/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/main/views.py -------------------------------------------------------------------------------- /myproject/static/js/contact_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/static/js/contact_me.js -------------------------------------------------------------------------------- /myproject/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/templates/base.html -------------------------------------------------------------------------------- /myproject/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/templates/robots.txt -------------------------------------------------------------------------------- /myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/urls.py -------------------------------------------------------------------------------- /myproject/wsgi.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/myproject/wsgi.py.bak -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/runserver.sh -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'dkarchmer' 2 | -------------------------------------------------------------------------------- /settings/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/settings/common.py -------------------------------------------------------------------------------- /settings/dev-local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/settings/dev-local.py -------------------------------------------------------------------------------- /settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkarchmer/aws-eb-docker-django/HEAD/settings/production.py --------------------------------------------------------------------------------