Workout With Friends
Stay fit with a little motivation
 All Classes Namespaces Files Functions Variables Properties
initializedb.py
Go to the documentation of this file.
1 from wowf.models import initialize_db
2 from wowf.scripts import BaseCommand, make_main
3 
4 
6 
7  def run(self):
8  initialize_db(self.env.registry.settings)
9 
10 
11 main = make_main(InitializeDBCommand)
12