├── .gitignore ├── LICENSE ├── README.md ├── chat ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── static │ └── js │ │ └── chat.js ├── templates │ └── chat.html ├── tests.py ├── urls.py └── views.py ├── city ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── template.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/README.md -------------------------------------------------------------------------------- /chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/admin.py -------------------------------------------------------------------------------- /chat/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/apps.py -------------------------------------------------------------------------------- /chat/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/models.py -------------------------------------------------------------------------------- /chat/static/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/static/js/chat.js -------------------------------------------------------------------------------- /chat/templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/templates/chat.html -------------------------------------------------------------------------------- /chat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/tests.py -------------------------------------------------------------------------------- /chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/urls.py -------------------------------------------------------------------------------- /chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/chat/views.py -------------------------------------------------------------------------------- /city/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /city/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/city/settings.py -------------------------------------------------------------------------------- /city/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/city/urls.py -------------------------------------------------------------------------------- /city/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/city/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.9 2 | twilio==5.0.0 3 | -------------------------------------------------------------------------------- /template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmakai/city-chat/HEAD/template.env --------------------------------------------------------------------------------