├── .qovery.yml ├── Dockerfile ├── db.sqlite3 ├── manage.py ├── templates └── index.html ├── weather ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-37.pyc ├── models.py ├── tests.py ├── urls.py └── views.py └── weatherdetector ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── settings.cpython-37.pyc ├── urls.cpython-37.pyc └── wsgi.cpython-37.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.qovery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/.qovery.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/Dockerfile -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/manage.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/templates/index.html -------------------------------------------------------------------------------- /weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /weather/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /weather/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /weather/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /weather/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /weather/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/admin.py -------------------------------------------------------------------------------- /weather/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/apps.py -------------------------------------------------------------------------------- /weather/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /weather/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/models.py -------------------------------------------------------------------------------- /weather/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/tests.py -------------------------------------------------------------------------------- /weather/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/urls.py -------------------------------------------------------------------------------- /weather/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weather/views.py -------------------------------------------------------------------------------- /weatherdetector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weatherdetector/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /weatherdetector/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /weatherdetector/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /weatherdetector/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /weatherdetector/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/asgi.py -------------------------------------------------------------------------------- /weatherdetector/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/settings.py -------------------------------------------------------------------------------- /weatherdetector/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/urls.py -------------------------------------------------------------------------------- /weatherdetector/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/weather_detector/HEAD/weatherdetector/wsgi.py --------------------------------------------------------------------------------