summaryrefslogtreecommitdiffstats
path: root/app.py
AgeCommit message (Collapse)Author
2015-01-31Render base.html at index pageindex-pageTeddy Wing
* Update routes to use the `add_url_rule` syntax * Create base.html * Create a home module and views.py file to serve the home page
2015-01-31app.py: Add debug configTeddy Wing
If we don't have an app environment variable set, assume we're in the development environment and set debug=True.
2015-01-31Add Interest modelsTeddy Wing
Two new models: * Interest * UserInterest (through model) These allow us to record interests/passions and associate them with users.
2015-01-31Add database & user modelsTeddy Wing
* Database courtesy of Flask-SQLAlchemy * User models from Flask-User
2015-01-25app.py: Remove unnecessary commentTeddy Wing
2015-01-25Rename test.py to app.pyTeddy Wing