diff --git a/README.md b/README.md new file mode 100644 index 0000000..fc786ce --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# django-calendar +Full calendar built using Django. Tutorial part i [here](https://www.huiwenteo.com/normal/2018/07/24/django-calendar.html) and part ii [here](https://www.huiwenteo.com/normal/2018/07/29/django-calendar-ii.html)! :) + +# Usage +Clone this repo, setup virtualenv, install Django +``` +git clone https://github.com/huiwenhw/django-calendar +cd django-calendar + +virtualenv env +source env/bin/activate +pip3 install django + +python3 manage.py migrate +python3 manage.py runserver +``` +Find the app running at http://localhost:8000/calendar/! + + + +