essensplan/README.md

22 lines
676 B
Markdown
Raw Normal View History

2018-07-31 06:23:35 +00:00
# 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/!
<img src=/images/calendar_v2.0.png/>
<img src=/images/calendar_v2.0_form_new.png/>
<img src=/images/calendar_v2.0_form_edit.png/>