├── Procfile ├── __pycache__ └── hello.cpython-39.pyc ├── app.py ├── create_db.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 5f8bac49757f_about_author_added.py │ ├── a7bc9bb228d8_added_profile_pic.py │ ├── e47c843a6860_remove_author.py │ └── f26432df1173_add_foreign_key.py ├── requirements.txt ├── static ├── css │ └── style.css ├── images │ ├── 4b927b0b-7f8f-11ec-8fe3-34e894657787_my_profile.png │ ├── 54d448aa-8518-11ec-a2a5-34e894657787_planking.png │ ├── 5cfef60e-8518-11ec-b98c-34e894657787_my_profile.png │ ├── 7978f08c-8a91-11ec-a01e-34e894657787_my_profile.png │ ├── NorthPeak.png │ ├── dbbaecd1-8517-11ec-a660-34e894657787_ │ ├── default_profile_pic.png │ ├── e58ac37a-7f8e-11ec-86c2-34e894657787_my_profile.png │ ├── efd91395-7f8e-11ec-821c-34e894657787_pool.jpg │ └── f095ba31-8517-11ec-ae00-34e894657787_my_profile.png └── js │ └── myfile.js ├── templates ├── 404.html ├── 500.html ├── add_post.html ├── add_user.html ├── admin.html ├── base.html ├── dashboard.html ├── edit_post.html ├── index.html ├── login.html ├── name.html ├── navbar.html ├── post.html ├── posts.html ├── search.html ├── test_pw.html ├── update.html └── user.html ├── users.db └── webforms.py /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /__pycache__/hello.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/__pycache__/hello.cpython-39.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/app.py -------------------------------------------------------------------------------- /create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/create_db.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/5f8bac49757f_about_author_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/versions/5f8bac49757f_about_author_added.py -------------------------------------------------------------------------------- /migrations/versions/a7bc9bb228d8_added_profile_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/versions/a7bc9bb228d8_added_profile_pic.py -------------------------------------------------------------------------------- /migrations/versions/e47c843a6860_remove_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/versions/e47c843a6860_remove_author.py -------------------------------------------------------------------------------- /migrations/versions/f26432df1173_add_foreign_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/migrations/versions/f26432df1173_add_foreign_key.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/4b927b0b-7f8f-11ec-8fe3-34e894657787_my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/4b927b0b-7f8f-11ec-8fe3-34e894657787_my_profile.png -------------------------------------------------------------------------------- /static/images/54d448aa-8518-11ec-a2a5-34e894657787_planking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/54d448aa-8518-11ec-a2a5-34e894657787_planking.png -------------------------------------------------------------------------------- /static/images/5cfef60e-8518-11ec-b98c-34e894657787_my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/5cfef60e-8518-11ec-b98c-34e894657787_my_profile.png -------------------------------------------------------------------------------- /static/images/7978f08c-8a91-11ec-a01e-34e894657787_my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/7978f08c-8a91-11ec-a01e-34e894657787_my_profile.png -------------------------------------------------------------------------------- /static/images/NorthPeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/NorthPeak.png -------------------------------------------------------------------------------- /static/images/dbbaecd1-8517-11ec-a660-34e894657787_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/images/default_profile_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/default_profile_pic.png -------------------------------------------------------------------------------- /static/images/e58ac37a-7f8e-11ec-86c2-34e894657787_my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/e58ac37a-7f8e-11ec-86c2-34e894657787_my_profile.png -------------------------------------------------------------------------------- /static/images/efd91395-7f8e-11ec-821c-34e894657787_pool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/efd91395-7f8e-11ec-821c-34e894657787_pool.jpg -------------------------------------------------------------------------------- /static/images/f095ba31-8517-11ec-ae00-34e894657787_my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/images/f095ba31-8517-11ec-ae00-34e894657787_my_profile.png -------------------------------------------------------------------------------- /static/js/myfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/static/js/myfile.js -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/add_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/add_post.html -------------------------------------------------------------------------------- /templates/add_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/add_user.html -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/edit_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/edit_post.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/name.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/post.html -------------------------------------------------------------------------------- /templates/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/posts.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/test_pw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/test_pw.html -------------------------------------------------------------------------------- /templates/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/update.html -------------------------------------------------------------------------------- /templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/templates/user.html -------------------------------------------------------------------------------- /users.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/users.db -------------------------------------------------------------------------------- /webforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/flasker/HEAD/webforms.py --------------------------------------------------------------------------------