Skip to main content

A highly opinionated drop-in library for static file management in Django

Project description

Django SimpleStatic is an opinionated Django app which makes it very simple to deal with static media, with extremely minimal configuration, as long as:

  • You store your static media in one directory, rather than alongside each app.

  • You want your files served from S3, rather from your own servers.

  • You want to use Google Closure Compiler to compress your JavaScript.

  • You want to compress your javascript ahead of time, rather than during the request.

  • You don’t use any of those fancy CSS precompilers like LESS or SCSS. (This may change someday as my personal preferences change.)

If any of the above don’t hold true, then this library probably won’t work for you. That said, if all of the above do hold true for you, then this app will likely be the simplest and best way to handle your static media.

Installation

  1. pip install django-simplestatic

  2. Add ‘simplestatic’ to your INSTALLED_APPS:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',

    # ... all your installed apps

    'simplestatic',
)
  1. In your settings file, set the following values:

SIMPLESTATIC_DIR = '/path/to/your/static/media/directory'

AWS_ACCESS_KEY_ID = 'YOUR_ACCESS_KEY_HERE'
AWS_SECRET_ACCESS_KEY = 'YOUR_SECRET_KEY_HERE'
AWS_STORAGE_BUCKET_NAME = 'YOUR_STATIC_BUCKET_HERE'
  1. In your urls.py, import the simplestatic_debug_urls function and execute it to the end of your urlpatterns:

from simplestatic.urls import simplestatic_debug_urls

urlpatterns = patterns('',
    # ... all of your url patterns right here
) + simplestatic_debug_urls()
  1. In your template (or templates) import and use the simplestatic template tags, which might look something like this:

{% load simplestatic_tags %}

<head>
  <title>I love django-simplestatic!</title>

  {% simplestatic %}
    {% compress_css "css/bootstrap.css" %}
    {% compress_css "css/screen.css" %}
    {% compress_js "js/jquery-1.9.1.js" %}
    {% compress_js "js/global.js" %}
  {% endsimplestatic %}
</head>
  1. Before you push your code, run the static_sync management command to compress any CSS and JS and upload the whole directory to S3:

python manage.py static_sync

Advanced Configuration

Even though in the vast majority of cases, you’ll only need to do what was mentioned above, django-simplestatic offers a number of settings that you might want to tweak. Provided here is a reference of every setting

Required Settings

SIMPLESTATIC_DIR:

The directory where you store all of your static media.

AWS_ACCESS_KEY_ID:

Your Amazon Web Services access key.

AWS_SECRET_ACCESS_KEY:

Your Amazon Web Services secret access key.

AWS_STORAGE_BUCKET_NAME:

The S3 bucket in which to store and serve all of your static media.

Optional Settings

SIMPLESTATIC_DEBUG: (Defaults to DEBUG)

A boolean determining whether to use the minimized, compressed versions of the files uploaded to S3. If set to True, then the full development versions of the files will be served instead. You shouldn’t have to touch this, as by default it’s set to the same value as your Django DEBUG value.

SIMPLESTATIC_DEBUG_PATH: (Defaults to ‘static/’)

The URL path from which to serve static media during development.

SIMPLESTATIC_COMPRESSED_DIR: (Defaults to ‘compressed’)

The URL path in S3 to place the compressed and minified versions of the CSS and JS.

For example, in the default case where this is set to ‘compressed’, your css and js might be located in a location like one of the following:

http://example.s3.amazonaws.com/compressed/6bf0c67b74b26425832a17bbf27b9cb9.css http://example.s3.amazonaws.com/compressed/97a548fc6b62d5bb9f50e6a95b25d8db.js

CLOSURE_COMPILATION_LEVEL: (Defaults to ‘SIMPLE_OPTIMIZATIONS’)

The Google Closure Compiler compilation level option. See the following page for more information:

https://developers.google.com/closure/compiler/docs/compilation_levels

CLOSURE_COMPILER_COMMAND: (Defaults to ‘java -jar /path/to/supplied/closure.jar’)

The command required to run Google Closure Compiler.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-simplestatic-0.0.2.tar.gz (5.4 MB view details)

Uploaded Source

File details

Details for the file django-simplestatic-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-simplestatic-0.0.2.tar.gz
Algorithm Hash digest
SHA256 83be4d91b64f967144606dd52d4e08a71d0e8a924d087965736ef24f8e8ebd02
MD5 ac846d2c416168210a57b2f9037c1b42
BLAKE2b-256 748b79d4d5e796a21390761f3d0b4c5cd2aa4b7d6500aa81dc3455d1c493401c

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page