An attempt to create an application for a home budget that works in conjunction with excel
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them
1. Create your virtual environment
2. Clone this repository
3. Install requirements
4. Run Script
A step by step series of examples that tell you how to get a development env running
- Create new virtual environment, for example with virtualenvwrapper:
$ pip install virtualenvwrapper
$ mkvirtualenv example_venv
- Clone this repository:
$ git clone https://github.com/3Cement/TO-DO-List-Django/
- Install requirements:
$ pip install -r requirements.txt
- Run Script (in folder with manage.py file):
$ python manage.py runserver
Run tests from folder with manage.py file:
$ python manage.py test
Please feel free to contribute this project and contact me for questions.
- Daniel Milewski - https://github.com/3Cement
See also the list of contributors who participated in this project.
This project is licensed under the Apache License - see the LICENSE.md file for details
- Big thanks to Mozilla Developers for creating this amazing tutorial (https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django) which helps me to learn Django