├── .gitignore ├── .travis.yml ├── Makefile ├── Procfile ├── README.rst ├── manage.py ├── requirements-dev.txt ├── requirements.txt ├── runtime.txt ├── setup.cfg └── taytay ├── __init__.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ └── fetch_song_data.py ├── migrations ├── 0001_initial.py ├── 0002_usersong.py └── __init__.py ├── models.py ├── settings.py ├── static ├── css │ └── taytay.css ├── fonts │ ├── satisfaction-webfont.eot │ ├── satisfaction-webfont.svg │ ├── satisfaction-webfont.ttf │ ├── satisfaction-webfont.woff │ └── satisfaction-webfont.woff2 └── js │ └── taytay.js ├── templates ├── 404.html ├── 500.html ├── base.html ├── homepage.html └── taytay │ ├── _songs.html │ ├── song-detail.html │ ├── song-generator.html │ └── song-list.html ├── tests ├── __init__.py ├── test_commands.py └── test_views.py ├── urls.py ├── views.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn taytay.wsgi --log-file=- 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/manage.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.4.2 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/setup.cfg -------------------------------------------------------------------------------- /taytay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taytay/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taytay/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taytay/management/commands/fetch_song_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/management/commands/fetch_song_data.py -------------------------------------------------------------------------------- /taytay/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/migrations/0001_initial.py -------------------------------------------------------------------------------- /taytay/migrations/0002_usersong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/migrations/0002_usersong.py -------------------------------------------------------------------------------- /taytay/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taytay/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/models.py -------------------------------------------------------------------------------- /taytay/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/settings.py -------------------------------------------------------------------------------- /taytay/static/css/taytay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/css/taytay.css -------------------------------------------------------------------------------- /taytay/static/fonts/satisfaction-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/fonts/satisfaction-webfont.eot -------------------------------------------------------------------------------- /taytay/static/fonts/satisfaction-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/fonts/satisfaction-webfont.svg -------------------------------------------------------------------------------- /taytay/static/fonts/satisfaction-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/fonts/satisfaction-webfont.ttf -------------------------------------------------------------------------------- /taytay/static/fonts/satisfaction-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/fonts/satisfaction-webfont.woff -------------------------------------------------------------------------------- /taytay/static/fonts/satisfaction-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/fonts/satisfaction-webfont.woff2 -------------------------------------------------------------------------------- /taytay/static/js/taytay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/static/js/taytay.js -------------------------------------------------------------------------------- /taytay/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/404.html -------------------------------------------------------------------------------- /taytay/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/500.html -------------------------------------------------------------------------------- /taytay/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/base.html -------------------------------------------------------------------------------- /taytay/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/homepage.html -------------------------------------------------------------------------------- /taytay/templates/taytay/_songs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/taytay/_songs.html -------------------------------------------------------------------------------- /taytay/templates/taytay/song-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/taytay/song-detail.html -------------------------------------------------------------------------------- /taytay/templates/taytay/song-generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/taytay/song-generator.html -------------------------------------------------------------------------------- /taytay/templates/taytay/song-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/templates/taytay/song-list.html -------------------------------------------------------------------------------- /taytay/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taytay/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/tests/test_commands.py -------------------------------------------------------------------------------- /taytay/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/tests/test_views.py -------------------------------------------------------------------------------- /taytay/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/urls.py -------------------------------------------------------------------------------- /taytay/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/views.py -------------------------------------------------------------------------------- /taytay/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/taytay/HEAD/taytay/wsgi.py --------------------------------------------------------------------------------