开源实例之Spirit
前言
Spirit is a modern Python based forum built on top of Django framework
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | Python 3.9 |
数据库 | SQLite |
服务器 | Gunicorn + Nginx |
程序 | Spirit 0.12.3 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 Python
- 已安装 WEB 服务器
安装程序
仓库地址:https://github.com/nitely/Spirit
文档地址:https://spirit.readthedocs.io
#安装 Spirit
pip install django-spirit
#创建项目
spirit startproject mysite
#设置数据库
cd mysite
python manage.py spiritinstall
#创建管理员账号
python manage.py createsuperuser
#启动
python manage.py runserver
#http://127.0.0.1:8000/
实例体验
后记
本实例仅供参考,不定期重置数据。