Settings variables¶
Configuration options for your settings.py.
BUILD_DIR¶
- BUILD_DIR¶
The location where you want the flat files to be built.
BUILD_DIR = '/home/you/code/your-site/build/'
# I like something a little snappier like...
import os
BUILD_DIR = os.path.join(__file__, 'build')
BAKERY_VIEWS¶
- BAKERY_VIEWS¶
The list of views you want to be built out as flat files when the build management command is executed.
BAKERY_VIEWS = (
'myapp.views.ExampleListView',
'myapp.views.ExampleDetailView',
'myapp.views.MyRSSView',
'myapp.views.MySitemapView',
)
AWS_BUCKET_NAME¶
- AWS_BUCKET_NAME¶
The name of the Amazon S3 “bucket” on the Internet were you want to publish the flat files in your local BUILD_DIR.
AWS_BUCKET_NAME = 'your-bucket'
AWS_ACCESS_KEY_ID¶
- AWS_ACCESS_KEY_ID¶
A part of your secret Amazon Web Services credentials. Necessary to upload files to S3.
AWS_ACCESS_KEY_ID = 'your-key'
AWS_SECRET_ACCESS_KEY¶
- AWS_SECRET_ACCESS_KEY¶
A part of your secret Amazon Web Services credentials. Necessary to upload files to S3.
AWS_SECRET_ACCESS_KEY = 'your-secret-key'
BAKERY_GZIP¶
- BAKERY_GZIP¶
Opt in to automatic gzipping of your files in the build method and addition of the required headers when deploying to Amazon S3. Defaults to False.
BAKERY_GZIP = True
GZIP_CONTENT_TYPES¶
- GZIP_CONTENT_TYPES¶
A list of file mime types used to determine which files to add the ‘Content-Encoding: gzip’ metadata header when syncing to Amazon S3. Defaults to include all ‘text/css’, ‘text/html’, ‘application/javascript’, ‘application/x-javascript’, ‘application/json’ and ‘application/xml’ files.
Only matters if you have set BAKERY_GZIP to True.
# defaults to 'text/css', 'text/html', 'application/javascript',
# 'application/x-javascript', 'application/json' and 'application/xml'
# files.
GZIP_CONTENT_TYPES = (
'text/css',
'text/html',
'application/javascript',
'application/x-javascript',
'application/json',
'application/xml'
)