From db0306a4f05034f3ca41ed98a90ab525c0defe32 Mon Sep 17 00:00:00 2001 From: Hui Wen Date: Mon, 30 Jul 2018 23:23:35 -0700 Subject: [PATCH] create README --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md 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/! + + + +