Project Setup

This commit is contained in:
Alexander Hunt 2017-10-26 23:04:16 -04:00
commit a6311d589d
5 changed files with 38 additions and 0 deletions

18
TODO.txt Normal file
View File

@ -0,0 +1,18 @@
- v0.1 Basic Reader
- Flask Microservice
- ElasticSearch Schema
- Reader Layout
- Bootstrap / React with Bower
- v0.2 Chapter CRUD
- Chapter Manage Component with Create and Delete Options
- Edit Chapter Component with Delete
- v0.3 Notes
- Note Manager Component
- Unit Testing
- Admin Access Restrictions
- Admin Page
- Search Functionality
- HTML Editor For Chapters / Notes

14
application.py Normal file
View File

@ -0,0 +1,14 @@
from flask import Flask
from flask_bootstrap import Bootstrap
application = Flask(__name__)
application.config.from_object(__name__)
Bootstrap(application)
@application.route('/')
def show_landing():
return render_template('index.html')
if __name__ == "__main__":
application.run()

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
click==6.7
Flask==0.12.2
itsdangerous==0.24
Jinja2==2.9.6
MarkupSafe==1.0
Werkzeug==0.12.2

BIN
templates/.DS_Store vendored Normal file

Binary file not shown.

0
templates/index.html Normal file
View File