python学习
This commit is contained in:
19
application.py
Normal file
19
application.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from flask import Flask
|
||||
from flask_script import Manager
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
import os
|
||||
class Application( Flask ):
|
||||
def __init__(self,import_name):
|
||||
super( Application,self ).__init__( import_name )
|
||||
self.config.from_pyfile( 'config/base_setting.py' )
|
||||
if "ops_config" in os.environ:
|
||||
self.config.from_pyfile( 'config/%s_setting.py'%os.environ['ops_config'] )
|
||||
|
||||
db.init_app( self )
|
||||
|
||||
db = SQLAlchemy()
|
||||
app = Application( __name__ )
|
||||
manager = Manager( app )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user