├── .gitignore ├── .travis.yml ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── helpers.py ├── profile.html ├── requirements.txt ├── runtime.txt ├── static ├── stalkhub_icon.png └── styles.css └── templates ├── 404.html ├── about.html ├── index.html ├── layout.html ├── not_found.html └── profile.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | *.pyc 3 | staticfiles 4 | .env 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file=- -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/app.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/helpers.py -------------------------------------------------------------------------------- /profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/profile.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.12 2 | -------------------------------------------------------------------------------- /static/stalkhub_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/static/stalkhub_icon.png -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/templates/not_found.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman-roy/StalkHub/HEAD/templates/profile.html --------------------------------------------------------------------------------