-
Notifications
You must be signed in to change notification settings - Fork 0
Creating this project
Jon Connolly edited this page Mar 25, 2019
·
6 revisions
- Added requirements directory, then added django and djangorestframework requirements
- Added Dockerfile with python-3.6-alpine
docker build .- Added docker-compose.yml file with single app service
docker-compose build- Create app:
docker-compose run app sh -c "django-admin.py startproject app ." - commited
- added repo to travis
- added .travis.yml
- added and configured flake8 in app/.flake8
- added core app
docker-compose run app sh -c "python manage.py startapp core"1.removed following files from core
- views
- tests.py (replace with tests folder)
- added wait_for_db command
- added postgres support in docker-compose and settings.py
- add custom user model to allow email as username