Skip to content

Commit

Permalink
freeze script
Browse files Browse the repository at this point in the history
  • Loading branch information
roddds committed Mar 6, 2016
1 parent 97bd04d commit 44b01d4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions freeze.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#! /usr/bin/env python
from flask_frozen import Freezer
from main import app

BASE_URL = 'http://roddds.github.io/deodoro-org/'

app.config['FREEZER_BASE_URL'] = BASE_URL
app.static_url_path = BASE_URL + 'static'

freezer = Freezer(app)

if __name__ == '__main__':
freezer.freeze()

0 comments on commit 44b01d4

Please sign in to comment.