Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 846 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 846 Bytes

fantastic-doodle

Build Status

Getting Started

Deploy to Heroku

Deploy

Example usage:

heroku run python manage.py migrate
heroku run python manage.py createsuperuser
heroku run python manage.py shell_plus

Deploy to Docker

Once everything is up, head over to localhost:8080.

cp sample.env .env
docker-compose up

Example usage:

docker-compose run web python manage.py migrate
docker-compose run web python manage.py createsuperuser
docker-compose run web python manage.py test --settings service.settings.test
docker-compose run --rm web python manage.py shell_plus