├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── alexa-app ├── AlexaSkill.js └── index.js ├── manage.py ├── requirements.txt ├── showertexts ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── static ├── css │ ├── alternates.css │ ├── animate.min.css │ └── base.css ├── img │ ├── alexa.png │ ├── shower-dude.png │ └── wired.png └── js │ ├── landing.js │ └── main.js ├── templates ├── alternates.html ├── base.html └── landing.html ├── tests ├── __init__.py ├── test_bot.py ├── test_showerthoughts.py └── test_subscriptions.py ├── texts ├── __init__.py ├── admin.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── createsu.py │ │ └── send_texts.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150811_0432.py │ ├── 0003_auto_20150908_2049.py │ ├── 0004_remove_subscriber_expired.py │ ├── 0005_auto_20150916_1025.py │ ├── 0006_auto_20150917_0906.py │ ├── 0007_auto_20150921_1133.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── util ├── __init__.py ├── showerbot.py ├── showerthoughts.py ├── subscription.py └── texter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/README.md -------------------------------------------------------------------------------- /alexa-app/AlexaSkill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/alexa-app/AlexaSkill.js -------------------------------------------------------------------------------- /alexa-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/alexa-app/index.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/requirements.txt -------------------------------------------------------------------------------- /showertexts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /showertexts/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/showertexts/settings.py -------------------------------------------------------------------------------- /showertexts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/showertexts/urls.py -------------------------------------------------------------------------------- /showertexts/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/showertexts/wsgi.py -------------------------------------------------------------------------------- /static/css/alternates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/css/alternates.css -------------------------------------------------------------------------------- /static/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/css/animate.min.css -------------------------------------------------------------------------------- /static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/css/base.css -------------------------------------------------------------------------------- /static/img/alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/img/alexa.png -------------------------------------------------------------------------------- /static/img/shower-dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/img/shower-dude.png -------------------------------------------------------------------------------- /static/img/wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/img/wired.png -------------------------------------------------------------------------------- /static/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/js/landing.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/alternates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/templates/alternates.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/templates/landing.html -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_bot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_showerthoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/tests/test_showerthoughts.py -------------------------------------------------------------------------------- /tests/test_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/tests/test_subscriptions.py -------------------------------------------------------------------------------- /texts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/admin.py -------------------------------------------------------------------------------- /texts/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texts/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texts/management/commands/createsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/management/commands/createsu.py -------------------------------------------------------------------------------- /texts/management/commands/send_texts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/management/commands/send_texts.py -------------------------------------------------------------------------------- /texts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0001_initial.py -------------------------------------------------------------------------------- /texts/migrations/0002_auto_20150811_0432.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0002_auto_20150811_0432.py -------------------------------------------------------------------------------- /texts/migrations/0003_auto_20150908_2049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0003_auto_20150908_2049.py -------------------------------------------------------------------------------- /texts/migrations/0004_remove_subscriber_expired.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0004_remove_subscriber_expired.py -------------------------------------------------------------------------------- /texts/migrations/0005_auto_20150916_1025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0005_auto_20150916_1025.py -------------------------------------------------------------------------------- /texts/migrations/0006_auto_20150917_0906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0006_auto_20150917_0906.py -------------------------------------------------------------------------------- /texts/migrations/0007_auto_20150921_1133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/migrations/0007_auto_20150921_1133.py -------------------------------------------------------------------------------- /texts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/models.py -------------------------------------------------------------------------------- /texts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/tests.py -------------------------------------------------------------------------------- /texts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/texts/views.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/showerbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/util/showerbot.py -------------------------------------------------------------------------------- /util/showerthoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/util/showerthoughts.py -------------------------------------------------------------------------------- /util/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/util/subscription.py -------------------------------------------------------------------------------- /util/texter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben174/showertexts/HEAD/util/texter.py --------------------------------------------------------------------------------