updates
parent
8b38df32ff
commit
b6af973dee
|
@ -2,3 +2,4 @@
|
|||
venv
|
||||
*~
|
||||
.DS_Store
|
||||
env
|
||||
|
|
2
app.py
2
app.py
|
@ -2,7 +2,7 @@
|
|||
# Imports
|
||||
#------------------------------------------------------------------------------#
|
||||
|
||||
from flask import *
|
||||
from flask import * # do not use '*'; actually input the dependencies
|
||||
from flask.ext.sqlalchemy import SQLAlchemy
|
||||
import logging
|
||||
from logging import Formatter, FileHandler
|
||||
|
|
15
error.log
15
error.log
|
@ -1,14 +1 @@
|
|||
2013-02-23 20:40:44,717 INFO: errors [in app.py:50]
|
||||
2013-02-23 20:40:44,908 INFO: errors [in app.py:50]
|
||||
2013-02-23 20:41:29,389 INFO: errors [in app.py:50]
|
||||
2013-02-23 20:41:49,729 INFO: errors [in app.py:51]
|
||||
2013-02-23 20:41:50,958 INFO: errors [in app.py:52]
|
||||
2013-02-23 20:45:05,391 INFO: errors [in app.py:52]
|
||||
2013-02-23 20:47:41,542 INFO: errors [in app.py:55]
|
||||
2013-02-23 20:50:38,048 INFO: errors [in app.py:71]
|
||||
2013-02-23 20:50:38,223 INFO: errors [in app.py:71]
|
||||
2013-02-23 20:52:44,673 INFO: errors [in app.py:71]
|
||||
2013-02-23 20:52:44,845 INFO: errors [in app.py:71]
|
||||
2013-02-23 20:55:59,383 INFO: errors [in app.py:71]
|
||||
2013-02-23 20:55:59,560 INFO: errors [in app.py:71]
|
||||
2013-02-23 21:00:40,516 INFO: errors [in app.py:72]
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@ Base.query = db_session.query_property()
|
|||
|
||||
# set your classes here
|
||||
|
||||
|
||||
'''
|
||||
class User(Base):
|
||||
__tablename__ = 'Users'
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Flask
|
||||
Flask-WTF
|
||||
Flask-SQLAlchemy
|
||||
Flask==0.10.1
|
||||
Flask-SQLAlchemy==1.0
|
||||
Flask-WTF==0.8.4
|
||||
|
||||
|
|
Loading…
Reference in New Issue