├── .gitignore ├── README.md ├── database.py ├── flasktask.db ├── passenger_wsgi.py ├── requirements.txt ├── routes.py ├── sales.db ├── sales.py ├── static └── css │ ├── bootstrap.css │ └── style.css └── templates ├── hello.html ├── home.html ├── log.html ├── tasks.html ├── template.html └── welcome.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | env 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/README.md -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/database.py -------------------------------------------------------------------------------- /flasktask.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/flasktask.db -------------------------------------------------------------------------------- /passenger_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/passenger_wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/requirements.txt -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/routes.py -------------------------------------------------------------------------------- /sales.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/sales.db -------------------------------------------------------------------------------- /sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/sales.py -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/templates/hello.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/templates/log.html -------------------------------------------------------------------------------- /templates/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/templates/tasks.html -------------------------------------------------------------------------------- /templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/templates/template.html -------------------------------------------------------------------------------- /templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/flask-intro/HEAD/templates/welcome.html --------------------------------------------------------------------------------