Skip to content

Instantly share code, notes, and snippets.

@joshfinnie
Created November 9, 2012 14:54
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save joshfinnie/4046138 to your computer and use it in GitHub Desktop.
Save joshfinnie/4046138 to your computer and use it in GitHub Desktop.
Installing Mezzanine on Heroku

Lately, I have been looking into Python CMSs. There are many out there, but for some reason or another Mezzanine stuck out as one I should try. Installing it is easy enough, but getting it up on running on my new favorite host, Heroku, was a bit of a challege.

Below you will find the steps that I took to get Mezzanine up and running on Heroku. Please let me know in the comments below if anything didn't work for you.

Setting up the Database

Heroku is shortly depricating Django's standard DATABASES dictionary in favor for a package which takes OS Environment Variables and builds the required dictionary for you. This is a good thing because it makes setting up a database on Heroku very easy. The package is called dj_database_url and it makes short work of getting a PostgreSQL database up and running with Mezzanine. Below is the code that you want to put in Mezzanine's DATABASES section:

import dj_database_url
DATABASES = {'default': dj_database_url.config(default='postgres://localhost')}

Serving Static Media

Getting Heroku to find the static media of a Django app was something more difficult than I originalls thought. After attempting many different internet solutions, I finally got Heroku to serve my static media. Below are the two files that I had to edit to get this running, I am not sure if both are absolutely needed, but the static media is being served none-the-less. (Please leave a comment below if anyone found of a better way to do this!)

First, I added a URLPattern to my urls.py file. This should have been easy enough, but Mezzanine has a catch-all pattern: ("^", include("mezzanine.urls")), which made me manipulate the file a little more than I would have liked. Below is what my URLPatterns now look like for Mezzanine.

urlpatterns = patterns('',
	(r'^static/(?P<path>.*)$',
	 'django.views.static.serve',
	 {'document_root': settings.STATIC_ROOT}),)

urlpatterns += patterns("",
	("^admin/", include(admin.site.urls)),

...

Second, I started to use the Gunicorn server to aid in getting my static media served properly. Heroku does not require a Profile to run Django apps, but in that case it uses ********. Since I am a huge fan of the Gunicorn web server, I wanted to eventually serve Mezzanine through it anyways. Adding the below Procfile got Mezzanine running on Gunicorn and successfully got Heroku to serve my static files.

web: python manage.py collectstatic --noinput; python manage.py run_gunicorn -b 0.0.0.0:$PORT

The above Procfile does two things, first if runs collectstatic to insure that all the static media is in the appropriate place within your app, and second it runs the Gunicorn server. In addition to adding this Procfile, you also need to add the Gunicorn application to your INSTALLED_APPS list on your settings.py file. Below is what my list looks like once Gunicorn was added (Note that I did not uncomment Mezzanine Accounts nor Mezzanine Mobile, if you are using them for your app, make sure to uncomment them.):

INSTALLED_APPS = (
	"django.contrib.admin",
	"django.contrib.auth",
    "django.contrib.contenttypes",
    "django.contrib.redirects",
    "django.contrib.sessions",
    "django.contrib.sites",
    "django.contrib.sitemaps",
    "django.contrib.staticfiles",
	"mezzanine.boot",
    "mezzanine.conf",
    "mezzanine.core",
    "mezzanine.generic",
    "mezzanine.blog",
	"mezzanine.forms",
	"mezzanine.pages",
    "mezzanine.galleries",
    "mezzanine.twitter",
    #"mezzanine.accounts",
    #"mezzanine.mobile",
    "gunicorn",
)

The requirements.txt

Heroku installs your Python apps by creating a virtualenv and installing packages via your requirements.txt file. For Mezzanine, this is the requirements.txt file I used to run my instance of Mezzanine:

Django==1.4
Mezzanine==1.1.4
Pillow==1.7.7
bleach==1.1.2
distribute==0.6.24
dj-database-url==0.2.1
filebrowser-safe==0.2.8
grappelli-safe==0.2.7
gunicorn==0.14.5
html5lib==0.95
psycopg2==2.4.5
pytz==2012c
wsgiref==0.1.2

I have included dj-database-url due to Heroku's DATABASES support (See the section called settings.py for more information.). I also include psycopg2 since I am using Heroku's free instance of PostgreSQL for my database.

Conclusion

Like I have said above, this is the way that worked for me, but I am sure it is not the best way of doing it. Let me know in the comments below as to whether this worked for you or not.

@jbruck
Copy link

jbruck commented Oct 20, 2013

Hi I can't seem to make this work. I have also tried the instructions from the Heroku Django getting started tutorial (https://devcenter.heroku.com/articles/getting-started-with-django) with little success for Mezzanine.

From what I've read of Heroku's instructions on serving static files, seems like you're on the right track. https://devcenter.heroku.com/articles/django-assets#automatic-collectstatic

I'm sure I'm missing something small. Any help please? Let me know and I'll post a full sh of what I'm doing

@gersande
Copy link

Your Procfile runs an error for me :

                        | ValueError: dictionary doesn't specify a version
01:00:12 web.1  | 2013-12-23 01:00:12 [7568] [INFO] Worker exiting (pid: 7568)
01:00:12 web.1  | 2013-12-23 01:00:12 [7565] [INFO] Shutting down: Master
01:00:12 web.1  | 2013-12-23 01:00:12 [7565] [INFO] Reason: Worker failed to boot.
01:00:12 web.1  | exited with code 3

Any idea why this would happen?

Edit: have created a stackoverflow thread for this because it's got me confuzzled
http://stackoverflow.com/questions/20737960/difficult-time-using-mezzanine-on-heroku-issues-with-procfile-and-dictionary-v

@wackytobaccy
Copy link

Yeah, can't seem to get this to work. Has anyone had success recently? I'm on Django 1.6.2 and Mezzanine 3.0.0.

@goldhand
Copy link

goldhand commented Apr 9, 2014

It was my understanding that you shouldn't use heroku to serve static files. Instead connect to S3:

########## STORAGE CONFIGURATION
# See: http://django-storages.readthedocs.org/en/latest/index.html
INSTALLED_APPS += (
    'storages',
)

# See: http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html#settings
STATICFILES_STORAGE = DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'

# See: http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html#settings
AWS_ACCESS_KEY_ID = values.SecretValue()
AWS_SECRET_ACCESS_KEY = values.SecretValue()
AWS_STORAGE_BUCKET_NAME = values.SecretValue()
AWS_AUTO_CREATE_BUCKET = True
AWS_QUERYSTRING_AUTH = False

# AWS cache settings, don't change unless you know what you're doing:
AWS_EXPIREY = 60 * 60 * 24 * 7
AWS_HEADERS = {
    'Cache-Control': 'max-age=%d, s-maxage=%d, must-revalidate' % (AWS_EXPIREY,
        AWS_EXPIREY)
}

# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
STATIC_URL = 'https://s3.amazonaws.com/%s/' % AWS_STORAGE_BUCKET_NAME
###

@martyzz1
Copy link

Using heroku to serve static files under django is perfectly fine, checkout django+whitenoise+waitress - especially if you stick your heroku app behind cloudflare or simillar cdn...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment