├── .gitignore ├── Procfile ├── README.md ├── app.py ├── article.md ├── auth ├── __init__.py ├── models.py └── views.py ├── chat ├── __init__.py ├── models.py └── views.py ├── middlewares.py ├── requirements.txt ├── routes.py ├── runtime.txt ├── settings.py ├── static ├── css │ ├── chat.css │ ├── reset.css │ └── vendor │ │ └── bootstrap.min.css ├── img │ └── favicon.png └── js │ ├── login.js │ ├── main.js │ ├── signin.js │ └── vendor │ ├── bootstrap.min.js │ └── jquery-1.12.0.min.js └── templates ├── auth ├── login.html └── sign.html ├── base.html └── chat └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python app.py --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/app.py -------------------------------------------------------------------------------- /article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/article.md -------------------------------------------------------------------------------- /auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/auth/__init__.py -------------------------------------------------------------------------------- /auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/auth/models.py -------------------------------------------------------------------------------- /auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/auth/views.py -------------------------------------------------------------------------------- /chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/chat/__init__.py -------------------------------------------------------------------------------- /chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/chat/models.py -------------------------------------------------------------------------------- /chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/chat/views.py -------------------------------------------------------------------------------- /middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/middlewares.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/requirements.txt -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/routes.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.5.1 2 | -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/settings.py -------------------------------------------------------------------------------- /static/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/css/chat.css -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/js/login.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/js/signin.js -------------------------------------------------------------------------------- /static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/vendor/jquery-1.12.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/static/js/vendor/jquery-1.12.0.min.js -------------------------------------------------------------------------------- /templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/templates/auth/login.html -------------------------------------------------------------------------------- /templates/auth/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/templates/auth/sign.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/aiohttp/HEAD/templates/chat/index.html --------------------------------------------------------------------------------