Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added armarium_app/app.db
Binary file not shown.
11 changes: 11 additions & 0 deletions armarium_app/app/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy


app = Flask(__name__)

app.config.from_object('config')
#config file still has original WTF CSRF and secret key values...need to changes
db = SQLAlchemy(app)

from app import views, models
Loading