Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 509 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 509 Bytes

Flask-Cake

Support for automatically executing CoffeeScript Cake files for Flask.

Quickstart

from flask import Flask
from flask_cake import Cake

app = Flask(__name__)
mongo = Cake(app)

Whenever there is a change in the static/coffee/ directory, cake build is executed.

More Info