A django blog system deployed on Sina App Engine (SAE).
- Running on http://www.butteredcat.org
- Based on Django 1.8.
- Inspired by Andrew Liu.
- Editing in Markdown
- Code highlighting
- MathJax
- duoshuo comments
- Share to SNS
- Mobile device friendly
- Search in site
- Archives views
- Categories
- Sitemaps
- robots.txt
git clone https://github.com/ButteredCat/my_blog.git
cd my_blog
virtualenv env
source env/bin/activate
pip install -r requirements.txt
- Create your local MySQL database.
- Create a
sensitive.py
inmy_blog
, in which you define 4 variables:SECRET_KEY
,LOCAL_DB
,LOCAL_DB_USER
andLOCAL_DB_PASS
. - Customise
ALLOWED_HOSTS
andSTATIC_URL
inmy_blog/settings.py
. - Setup database with django migration tool.
- Run
pack.py
to package code and static files. - Export local database.
- Upload package and database file to SAE.