File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 22# -*- coding: utf-8 -*-
33import os
44from flask .ext .script import Command , Option , Manager
5+ from flask .ext .assets import ManageAssets
56
67from myapp import config
78from myapp .main import app_factory
@@ -56,6 +57,7 @@ def run(self):
5657manager .add_command ("drop_db" , DropDB ())
5758manager .add_command ("seed_db" , SeedDB ())
5859manager .add_command ("clean" , Clean ())
60+ manager .add_command ("assets" , ManageAssets ())
5961
6062
6163if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Flask==0.10.1
22Flask-Assets == 0.8
33Flask-Login == 0.2.7
44Flask-SQLAlchemy == 1.0
5- Flask-Script == 0.6.2
5+ Flask-Script == 0.5.3
66Flask-WTF == 0.9.2
77Jinja2 == 2.7.1
88MarkupSafe == 0.18
@@ -12,6 +12,7 @@ Werkzeug==0.9.4
1212bcrypt == 1.0.2
1313cffi == 0.7.2
1414itsdangerous == 0.23
15+ jsmin == 2.0.4
1516py-bcrypt == 0.4
1617pycparser == 2.10
1718pysqlite == 2.6.3
You can’t perform that action at this time.
0 commit comments