├── .gitignore ├── README.md ├── bot.py ├── requirements.txt ├── run.bat ├── run.sh ├── stylizing.py └── webapp ├── app ├── __init__.py ├── admin.py ├── apps.py ├── data.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_service_id.py │ ├── 0003_appointment.py │ ├── 0004_rename_services_appointment_services_ids.py │ └── __init__.py ├── models.py ├── static │ ├── script.js │ └── stylesheet.css ├── templates │ └── make_order.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── optional.py ├── ownsecrets.py ├── security.py └── webapp ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/run.sh -------------------------------------------------------------------------------- /stylizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/stylizing.py -------------------------------------------------------------------------------- /webapp/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/admin.py -------------------------------------------------------------------------------- /webapp/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/apps.py -------------------------------------------------------------------------------- /webapp/app/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/data.py -------------------------------------------------------------------------------- /webapp/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /webapp/app/migrations/0002_alter_service_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/migrations/0002_alter_service_id.py -------------------------------------------------------------------------------- /webapp/app/migrations/0003_appointment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/migrations/0003_appointment.py -------------------------------------------------------------------------------- /webapp/app/migrations/0004_rename_services_appointment_services_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/migrations/0004_rename_services_appointment_services_ids.py -------------------------------------------------------------------------------- /webapp/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/models.py -------------------------------------------------------------------------------- /webapp/app/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/static/script.js -------------------------------------------------------------------------------- /webapp/app/static/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/static/stylesheet.css -------------------------------------------------------------------------------- /webapp/app/templates/make_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/templates/make_order.html -------------------------------------------------------------------------------- /webapp/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/tests.py -------------------------------------------------------------------------------- /webapp/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/urls.py -------------------------------------------------------------------------------- /webapp/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/app/views.py -------------------------------------------------------------------------------- /webapp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/manage.py -------------------------------------------------------------------------------- /webapp/optional.py: -------------------------------------------------------------------------------- 1 | WEBAPP_URL = 'https://fruitourist.ru/liot' -------------------------------------------------------------------------------- /webapp/ownsecrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/ownsecrets.py -------------------------------------------------------------------------------- /webapp/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/security.py -------------------------------------------------------------------------------- /webapp/webapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/webapp/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/webapp/asgi.py -------------------------------------------------------------------------------- /webapp/webapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/webapp/settings.py -------------------------------------------------------------------------------- /webapp/webapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/webapp/urls.py -------------------------------------------------------------------------------- /webapp/webapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesvetaevgy/liot/HEAD/webapp/webapp/wsgi.py --------------------------------------------------------------------------------