mirror of
				https://github.com/cookiecutter/cookiecutter-django.git
				synced 2025-10-31 07:57:42 +03:00 
			
		
		
		
	Commit 04a58d5 removed the Heroku instant deploy button but the docs
still mention this as an option, this commit updates the docs to reflect
this change.
		
	
			
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
| Deployment on Heroku
 | |
| ====================
 | |
| 
 | |
| .. index:: Heroku
 | |
| 
 | |
| Run these commands to deploy the project to Heroku:
 | |
| 
 | |
| .. code-block:: bash
 | |
| 
 | |
|     heroku create --buildpack https://github.com/heroku/heroku-buildpack-python
 | |
| 
 | |
|     heroku addons:create heroku-postgresql:hobby-dev
 | |
|     heroku pg:backups schedule --at '02:00 America/Los_Angeles' DATABASE_URL
 | |
|     heroku pg:promote DATABASE_URL
 | |
| 
 | |
|     heroku addons:create heroku-redis:hobby-dev
 | |
|     heroku addons:create mailgun
 | |
| 
 | |
|     heroku config:set DJANGO_ADMIN_URL="$(openssl rand -base64 32)"
 | |
|     heroku config:set DJANGO_SECRET_KEY="$(openssl rand -base64 64)"
 | |
|     heroku config:set DJANGO_SETTINGS_MODULE='config.settings.production'
 | |
|     heroku config:set DJANGO_ALLOWED_HOSTS='.herokuapp.com'
 | |
| 
 | |
|     heroku config:set DJANGO_AWS_ACCESS_KEY_ID=YOUR_AWS_ID_HERE
 | |
|     heroku config:set DJANGO_AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY_HERE
 | |
|     heroku config:set DJANGO_AWS_STORAGE_BUCKET_NAME=YOUR_AWS_S3_BUCKET_NAME_HERE
 | |
| 
 | |
|     heroku config:set DJANGO_MAILGUN_SERVER_NAME=YOUR_MALGUN_SERVER
 | |
|     heroku config:set DJANGO_MAILGUN_API_KEY=YOUR_MAILGUN_API_KEY
 | |
|     heroku config:set MAILGUN_SENDER_DOMAIN=YOUR_MAILGUN_SENDER_DOMAIN
 | |
| 
 | |
|     heroku config:set PYTHONHASHSEED=random
 | |
|     heroku config:set DJANGO_ADMIN_URL=\^somelocation/
 | |
| 
 | |
|     git push heroku master
 | |
|     heroku run python manage.py migrate
 | |
|     heroku run python manage.py check --deploy
 | |
|     heroku run python manage.py createsuperuser
 | |
|     heroku open
 |