Skip to content

LionelDong/MyBlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyBlog

  • python版本:python3

  • django版本:django1.11

  • 用到的包,均可使用pip install安装

    1. pymysql
    2. django
    3. pillow
    4. markdown
    5. django-ckeditor
    6. django-haystack
    7. whoosh
    8. jieba
  • 后台使用django进行管理

  • 数据库使用mysql

  • 将代码clone到本地,在MyBlog文件夹下的setting文件中更改自己的数据库配置

 DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'myblog',
        'HOST': '127.0.0.1',
        'PORT': '3306',
        'USER': 'root',
        'PASSWORD': '85276666'
    }
}
  • 将MyBlog/Post/migrations中的迁移文件除__init__.py外全部删除
  • python manager.py makemigrations生成迁移文件

  • python manager.py migrate 根据迁移文件生成数据库文件

About

python3 django blog

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published