All Projects → Github-Benjamin → HomePage

Github-Benjamin / HomePage

Licence: other
Python Django开发管理后台+Bootstrap响应式网站

Programming Languages

TSQL
950 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to HomePage

Django Init
Project template used at Fueled for scaffolding new Django based projects. 💫
Stars: ✭ 126 (+293.75%)
Mutual labels:  uwsgi
uwsgiconf
Configure uWSGI from your Python code
Stars: ✭ 75 (+134.38%)
Mutual labels:  uwsgi
docker-udata
udata and plugins all-in-one Docker image
Stars: ✭ 15 (-53.12%)
Mutual labels:  uwsgi
Docker Django
A project to get you started with Docker and Django.
Stars: ✭ 170 (+431.25%)
Mutual labels:  uwsgi
k8s-deployer
Deploy Kubernetes service and store retrieved information in the Consul K/V store
Stars: ✭ 23 (-28.12%)
Mutual labels:  supervisord
s3-monitoring
No description or website provided.
Stars: ✭ 14 (-56.25%)
Mutual labels:  uwsgi
Shorty
🔗 A URL shortening service built using Flask and MySQL
Stars: ✭ 78 (+143.75%)
Mutual labels:  uwsgi
docker-tomcat-mysql
Docker image for tomcat+mysql, orchestrated with supervisord
Stars: ✭ 26 (-18.75%)
Mutual labels:  supervisord
keras-rest-API
A scalable Flask API to interact with a pre-trained Keras model.
Stars: ✭ 14 (-56.25%)
Mutual labels:  uwsgi
moinmoin-wiki
Docker image based on Debian with the Moinmoin wiki engine, uwsgi, nginx and self signed SSL.
Stars: ✭ 33 (+3.13%)
Mutual labels:  uwsgi
Uwsgi Sloth
Realtime uwsgi log file analyzer, slow requests analyzer.
Stars: ✭ 203 (+534.38%)
Mutual labels:  uwsgi
webtodotxt
Web-based GUI to manage a Todo.txt file
Stars: ✭ 30 (-6.25%)
Mutual labels:  uwsgi
supervisor-bundle
Easily update your @Supervisor configuration by using annotations in Symfony commands.
Stars: ✭ 35 (+9.38%)
Mutual labels:  supervisord
Crawlerhot
今日热榜 抓取网站热榜信息,并且前端进行展示
Stars: ✭ 158 (+393.75%)
Mutual labels:  uwsgi
elastic-beanstalk-nginx-uwsgi-django
A Django sample app running with uWSGI and Nginx on AWS Elastic Beanstalk.
Stars: ✭ 87 (+171.88%)
Mutual labels:  uwsgi
Pyblog
Pyblog 是一个简单易用的在线 Markdown 博客系统,它使用 Python 的 flask 架构,理论上支持所有 flask-sqlalchemy 所能支持的数据库。 编辑器使用的是 editor.md。当前版本(v2.0)支持且仅支持 python3! Python 的 Markdown to HTML 编译器使用的是 Mistune! Just so!
Stars: ✭ 113 (+253.13%)
Mutual labels:  uwsgi
docker-iqfeed
Dockerized IQFeed client with X11VNC for remote viewing
Stars: ✭ 28 (-12.5%)
Mutual labels:  supervisord
go-uwsgi
uwsgi implement for go
Stars: ✭ 51 (+59.38%)
Mutual labels:  uwsgi
uwsgi tasks
Asynchronous tasks management with UWSGI server
Stars: ✭ 88 (+175%)
Mutual labels:  uwsgi
docker-django-nginx-uwsgi-postgres-load-balance-tutorial
實戰 Docker + Django + Nginx + uWSGI + Postgres - Load Balance -Tutorial 📝
Stars: ✭ 102 (+218.75%)
Mutual labels:  uwsgi

HomePage

Python开发管理后台+Bootstrap响应式官网首页

后端:Python Django

前端:Bootstrap

数据库:MySQL、Redis

服务端:Centos、Nginx、uWSGI、Supervisord

计划前端实现功能:

1.首页:响应式导航条、轮播图、基本内容、Footer区块

2.资讯内容:响应式资讯内容管理、热门资讯

3.新闻模块:标题、作者、内容、日期,热门资讯

4.案例:合作相关展示页面

5.关于:Ajax留言板块,百度地图API,常见板式

6.页面访问次数、IP统计数据收集统计分析

计划后端实现功能:

1.首页内容管理:Banner轮播图管理,包括:图片管理、超链接配置、标题、内容、启用停用

2.首页资源、资讯、案例:资讯管理、热门资讯管理等

3.新闻:集成KindEditor富文本编辑插件,编辑、修改回调等

4.用户管理、角色权限管理、菜单管理:实现增删改查、菜单路径配置、修改回调、用户权限分配等功能

5.留言管理:基本管理查看功能,新增留言条数显示

6.图标统计模块:按时间段统计页面访问次数,独立IP访问页面数,单日数据分析,分别生成柱状图、饼图、曲线图

项目部署调试篇

1.本地调试:根目录运行>python manage.py runserver 0.0.0.0:8080

2.服务器部署篇:

运行环境:Centos、Nginx、uWSGI、Supervisord、Redis、Mysql

备注:Linux环境下需要手动下载并配置字体库,绝对文件路径

Nginx.conf:

    server {
            listen 88;
            server_name localhost;
    location / {
            include /usr/local/nginx/conf/uwsgi_params;
            uwsgi_pass 127.0.0.1:8000;
            }
    location /static {
            alias /var/www/HomePage/static;
            }
    }

uWSGI.ini:

[uwsgi]
#http = 127.0.0.1:8000
socket = 127.0.0.1:8000
chdir = /var/www/HomePage
module = myapp.wsgi
master = true
processes = 2
threads = 2
max-requests = 6000
chmod-socket = 664
vacuum = true

supervisord.conf:

[program:HomePage]
directory = /var/www/HomePage
command = uwsgi --ini uwsgi.ini

想做就做呗,╮(╯▽╰)╭     !!!

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