rascunho

ref: master

./app.py


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from rascunho.app import app
from rascunho.config import env

if __name__ == '__main__':
    debug = False

    if env == 'dev':
        debug = True

    app.run(debug=debug)