Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

mishbahr/django-staticgen

Repository files navigation

django-staticgen

http://img.shields.io/travis/mishbahr/django-staticgen.svg?style=flat-square Latest Version Downloads Python Versions License http://img.shields.io/coveralls/mishbahr/django-staticgen.svg?style=flat-square

Push your django powered site to Amazon S3.

WORK IN PROGRESS // NOT PRODUCTION READY.

Demo

Live Site: http://staticgen-demo.herokuapp.com

Static Site: http://staticgen-demo.s3-website-us-west-2.amazonaws.com

Source code for demo: http://github.com/mishbahr/staticgen-demo

Quickstart

  1. Install django-staticgen from PyPi:

    pip install django-staticgen
    
  2. Add staticgen to INSTALLED_APPS:

    INSTALLED_APPS = (
        ...
        'staticgen',
        ...
    )
    
  3. Migrate database:

    python manage.py migrate
    
  4. To publish your site on Amazon S3, you'll need to setup an AWS S3 bucket to host the website. Add the following details to your projects settings.py module:

    AWS_ACCESS_KEY_ID = 'AKIAIOSFODNN7EXAMPLE'
    AWS_SECRET_ACCESS_KEY = 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY'
    AWS_STORAGE_BUCKET_NAME = 'staticgen-bucket'
    
  5. Finally, publishing your site to S3 is as simple as:

    python manage.py staticgen_publish
    

Celery

This project requires celery>=3.1 to be properly installed and configured.

For more information on using Celery with Django.

See: http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html

Todo

  • Cache Control
  • Gzip Compression
  • CloudFront distribution/invalidation

About

Push your django powered site to Amazon S3.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published