This is an app created in Django that calls the API Open Weather Map.
It allows you to know the current weather of an specific location.
The tecnologies used in this project are these:
- Django 3.0.3
- Bulma 0.8, it is an impressive CSS framework, simple and easily customizable.
- Pipenv
Because it uses pipenv for managing the environment, I included a scripts section for make the process easier.
For example during the development process I used this:
pipenv run dev
It is inside the Pipfile file:
[scripts]
dev = "python manage.py runserver"
Then, in a dev environment, you can access http://localhost:8000 to see the application running.