All Projects → hardcore-newbie → Qblog

hardcore-newbie / Qblog

🐍A blog base on Python+Django.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Qblog

Myblog
python 博客系统,基于django
Stars: ✭ 70 (-2.78%)
Mutual labels:  blog-engine, django
Django Dbbackup
Management commands to help backup and restore your project database and media files
Stars: ✭ 471 (+554.17%)
Mutual labels:  mysql, django
Autoops
linux资产管理,cmdb,django, webssh,运维管理平台,数据库操作平台 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 340 (+372.22%)
Mutual labels:  mysql, django
Elefant
Elefant, the refreshingly simple PHP CMS and web framework.
Stars: ✭ 188 (+161.11%)
Mutual labels:  blog-engine, mysql
Funpyspidersearchengine
Word2vec 千人千面 个性化搜索 + Scrapy2.3.0(爬取数据) + ElasticSearch7.9.1(存储数据并提供对外Restful API) + Django3.1.1 搜索
Stars: ✭ 782 (+986.11%)
Mutual labels:  mysql, django
Myblog
Python+Django+MySQL 博客系统
Stars: ✭ 263 (+265.28%)
Mutual labels:  mysql, django
Yasql
基于Python开发的MySQL WEB版本的工单审核执行和SQL查询平台
Stars: ✭ 463 (+543.06%)
Mutual labels:  mysql, django
Hexopress
A tiny blogging platform that lets you write posts in Google Docs and syncs with a Google Drive directory.
Stars: ✭ 102 (+41.67%)
Mutual labels:  blog-engine, django
Leafpub
Simple, beautiful, open source publishing.
Stars: ✭ 645 (+795.83%)
Mutual labels:  blog-engine, mysql
Python Spider
豆瓣电影top250、斗鱼爬取json数据以及爬取美女图片、淘宝、有缘、CrawlSpider爬取红娘网相亲人的部分基本信息以及红娘网分布式爬取和存储redis、爬虫小demo、Selenium、爬取多点、django开发接口、爬取有缘网信息、模拟知乎登录、模拟github登录、模拟图虫网登录、爬取多点商城整站数据、爬取微信公众号历史文章、爬取微信群或者微信好友分享的文章、itchat监听指定微信公众号分享的文章
Stars: ✭ 615 (+754.17%)
Mutual labels:  mysql, django
Serendipity
A PHP blog software
Stars: ✭ 151 (+109.72%)
Mutual labels:  blog-engine, mysql
E Commerce 2 django
Guest register, user register, user login, user logout, account home page, product view history, change password, reset password, change name, send activation email when register, resend activation email, add shipping address, add billing address, add nickname to the addresses, edit shipping address, edit billing address, view list of your addresses, reuse shipping addresses when order products, reuse billing addresses when ordeer products, show sales analytics if staff or admin only using -chart.js-, get analytics data with Ajax, receive marketing email, change if user will receive marketing email or not by admin, send contact message with Ajax, products list, product detail, download product detail as a PDF file, download digital product files -if the user purchased that digital product only-, orders list, list of digital products files, order detail, download order detail as a PDF file, verify order ownership with Ajax -to secure order detail page-, show cart products, add or remove product from cart, checkout page, thanks page when order placed successfully, add or reuse payment method, add or reuse payment method with Ajax, search products by title, search products by description, search products by price, search products by tag title, write tags for products -by admin only-, auto fill contact email, full name if user logged in.
Stars: ✭ 20 (-72.22%)
Mutual labels:  mysql, django
Sciblog
A blog made with django designed like a scientific paper written in Latex.
Stars: ✭ 145 (+101.39%)
Mutual labels:  blog-engine, django
Architect
A set of tools which enhances ORMs written in Python with more features
Stars: ✭ 320 (+344.44%)
Mutual labels:  mysql, django
Chyrp Lite
An ultra-lightweight blogging engine, written in PHP.
Stars: ✭ 131 (+81.94%)
Mutual labels:  blog-engine, mysql
Django Mysql
🐬 🐴 Extensions to Django for use with MySQL/MariaDB
Stars: ✭ 410 (+469.44%)
Mutual labels:  mysql, django
Django Migration Linter
🚀 Detect backward incompatible migrations for your django project
Stars: ✭ 231 (+220.83%)
Mutual labels:  mysql, django
Dpress
A simple blog powered by Django
Stars: ✭ 85 (+18.06%)
Mutual labels:  blog-engine, django
Opman Django
💯✅自动化运维平台:CMDB、CI/CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理
Stars: ✭ 539 (+648.61%)
Mutual labels:  mysql, django
Crawl
selenium异步爬取网页图片
Stars: ✭ 13 (-81.94%)
Mutual labels:  mysql, django

QBlog

GitHub watchers GitHub stars GitHub forks GitHub issues

QBlog is a blog base on Python + Django (http://qblog.yc.cool).
In a few minutes you'll be set up with a minimal, responsive blog like the one below !
1

Quick Start

Step 1) Clone repository

git clone https://gitee.com/hardcore-newbie/QBlog.git

Step 2) Environmental preparations

The environment should be 'Python2.7(devel) + Django1.7.1 + MySQL'.

Install Python development version :

apt-get install python-dev    

Install MySQL :

apt-get install mysql-server  

Install Python interface to MySQL :

apt-get install python-mysqldb  

Install Django :

sudo pip install django==1.7.1

Auto install other requirements :

python install_requirements.py   

(The location of the file 'install_requirements.py' is QBlog/install_requirements.py)

If the 'pip' is not installed in your environment, follow the steps below to complete the installation :

curl https://bootstrap.pypa.io/ez_setup.py -o - | python  
easy_install pip  

Step 3) Config Database

Edit xblog/settings_dev.py to config database info.

Example :

DATABASES['default']['NAME'] = 'xblog'
DATABASES['default']['USER'] = 'root'
DATABASES['default']['PASSWORD'] = '123456'
DATABASES['default']['HOST'] = '127.0.0.1'
DATABASES['default']['PORT'] = '3306'

You should create a database named 'xblog' in MySQL :

mysql> create database xblog;  

Finally, make models into your database schema :

python manage.py makemigrations  
python manage.py migrate  

Step 4) Run !

python manage.py runserver 0.0.0.0:8080  

or nonhup

nohup python manage.py runserver 0.0.0.0:8080&

Now you can try http://127.0.0.1:8080 .

Step 5) Publish your first blog post

Create an admin account for first start :

python manage.py createsuperuser  

For example, set username 'admin' and password '123456'.

Then access http://127.0.0.1:8080/admin, type the username and password to login : 2
3

Questions?

Open an Issue and let's chat!

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].