Weather App is just a basic app to see weather in your nearby cities.
- Django
- Python
- HTML
- CSS
- WeatherAPI (http://openweathermap.org)
To get a local copy up and running follow these simple steps:
- Python 3.
-
Create a local copy of this git repository with
git clone
command.$ git clone https://github.com/dhavall13/Weather-App.git
-
Create a Virtual Enviornment with the
virtualenv
module.$ virtualenv .
-
Once you’ve created a virtual environment, you may activate it.
$ . activate
-
Now, install the requirements from the
requirements.txt
file.$ pip install -r requirements.txt
-
Now, apply the migrations with the management command.
$ python manage.py migrate
-
Finally, start the developement server with the management command.
$ python manage.py runserver
You can use this project to see weather in your area. It is simple,clean and easy to use. You should give a try!
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
- Dhaval Chaudhari - Initial work - dhavall13
This project is licensed under the MIT License - see the LICENSE.md file for details