Skip to main content

Serve production static files with Flask.

Project description

Serve production static files with Flask. A Flask version of DJ-Static.

Usage

$ pip install fl-static

Configure your static assets in:

from flask import Flask

app = Flask(__name__)
app.config.update(
    STATIC_ROOT='static',
    STATIC_URL='/static',
)

Then, use the Cling middleware:

from fl_static import Cling
app = Cling(app)

You can use Werkzeug’s local development server:

app.run()

Jinja2 Magic

fl_static.Jinja2Magic extends static.StringMagic providing Jinja2 template support.

You can see it in action in example.py.

License

http://marksteve.mit-license.org

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

fl-static-0.0.2.tar.gz (2.1 kB view hashes)

Uploaded Source

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