You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# DjangoBlog
基于`python3.5`和`Django1.10`的博客。
[](https://travis-ci.org/liangliangyy/DjangoBlog) [](https://coveralls.io/github/liangliangyy/DjangoBlog?branch=master) [](https://requires.io/github/liangliangyy/DjangoBlog/requirements/?branch=master) []() []() []() []()
## 安装
使用pip安装:
`pip install -r requirements.txt`
如果你没有pip, 使用如下方式安装:
OS X / Linux 电脑,终端下执行:
curl http://peak.telecommunity.com/dist/ez_setup.py | python
curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
windows电脑:
下载 http://peak.telecommunity.com/dist/ez_setup.py 和 https://raw.github.com/pypa/pip/master/contrib/get-pip.py 这两个文件,双击运行。
## 运行
修改`DjangoBlog/setting.py` 修改数据库配置,如下所示:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'djangoblog',
'USER': 'root',
'PASSWORD': 'password',
'HOST': 'host',
'PORT': 3306,
}
}
### 创建数据库
终端下执行:
./manage.py makemigrations
./manage.py migrate
### 开始运行:
执行:
`./manage.py runserver`
浏览器打开: http://127.0.0.1:8000/ 就可以看到效果了。