All Projects → newpanjing → Myblog

newpanjing / Myblog

python 博客系统,基于django

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Myblog

Sciblog
A blog made with django designed like a scientific paper written in Latex.
Stars: ✭ 145 (+107.14%)
Mutual labels:  blog, blog-engine, django
Dpress
A simple blog powered by Django
Stars: ✭ 85 (+21.43%)
Mutual labels:  blog, blog-engine, django
Long Haul
A minimal, type-focused Jekyll theme.
Stars: ✭ 524 (+648.57%)
Mutual labels:  blog, blog-theme
Htmly
Simple and fast databaseless PHP blogging platform, and Flat-File CMS
Stars: ✭ 689 (+884.29%)
Mutual labels:  blog, blog-engine
Vuepress Theme Vdoing
🚀一款简洁高效的VuePress知识管理&博客(blog)主题
Stars: ✭ 809 (+1055.71%)
Mutual labels:  blog, blog-theme
Puput
A Django blog app implemented in Wagtail
Stars: ✭ 450 (+542.86%)
Mutual labels:  blog, django
Mapache
You can use the theme Mapache for ghost in: Blog - Magazine - Landing page - Personal page - Photographers. and in many other things
Stars: ✭ 477 (+581.43%)
Mutual labels:  blog, blog-theme
Liebling
Beautiful and clean Ghost theme that is easy and comfortable to use. To get the latest version please head over the releases page 👉🏼
Stars: ✭ 792 (+1031.43%)
Mutual labels:  blog, blog-theme
Django Blog
django搭建博客
Stars: ✭ 365 (+421.43%)
Mutual labels:  blog, django
Jekyll Theme H2o
🎉 A clean and delicate Jekyll theme. Jekyll博客主题
Stars: ✭ 894 (+1177.14%)
Mutual labels:  blog, blog-theme
Nodepress
😎 RESTful API service for Blog/CMS, powered by @nestjs
Stars: ✭ 829 (+1084.29%)
Mutual labels:  blog, blog-engine
Brucezhaor.github.io
🚧 Bruce Zhao's Tech Blog -- Under Reconstructing ...
Stars: ✭ 25 (-64.29%)
Mutual labels:  blog, blog-theme
Reverie
🎨 A ridiculously elegant Jekyll theme.
Stars: ✭ 442 (+531.43%)
Mutual labels:  blog, blog-theme
Halo
✍ 一款优秀的开源博客发布应用。
Stars: ✭ 20,521 (+29215.71%)
Mutual labels:  blog, blog-engine
Monologue
Monologue is a basic blogging engine. It is a Rails mountable engine you can mount in your already existing Rails app, or a in a new one! Enjoy.
Stars: ✭ 485 (+592.86%)
Mutual labels:  blog, blog-engine
Djangoblog
🍺基于Django的博客系统
Stars: ✭ 4,256 (+5980%)
Mutual labels:  blog, django
Izone
django+bootstrap4 个人博客
Stars: ✭ 757 (+981.43%)
Mutual labels:  blog, django
Palewi.re
The once and future blog
Stars: ✭ 12 (-82.86%)
Mutual labels:  blog, django
Blog Core
Modular blog using Blazor with clean domain-driven design patterns
Stars: ✭ 345 (+392.86%)
Mutual labels:  blog, blog-engine
Vmaig blog
an opensource blog system based on django 2.2 and bootstrap https://vmaig.com
Stars: ✭ 354 (+405.71%)
Mutual labels:  blog, django

myblog

simpleui官方博客,利用django+django-simpleui

演示地址

https://www.88cto.com

安装步骤

第一步

使用豆瓣源安装依赖包

pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com -r requirements.txt 

第二步

请在settings.py中配置你的数据库连接,创建个空数据库就可以了

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'blog',
        'USER': 'myblog',
        'PASSWORD': '5rWEu98A',
        'HOST': 'mysql.oracle.com',
        'PORT': '3306',
        'OPTIONS': {'charset': 'utf8mb4'},
        'CONN_MAX_AGE': 600
    }
}

第三步

执行数据库迁移,自动创建表

python3 manage.py migrate

第四步

创建一个超级用户名和密码,按提示输入用户名和密码即可

python3 manage.py createsuperuser

第五步

python manage.py runserver 8000

第六步

打开浏览器 访问前台地址和后台地址

  • 前台地址

http://localhost:8000

  • 后台地址

http://localhost:8000/admin

打开后台之后,输入第四步创建的用户名和密码即可

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].