A Forum(BBS) based on Django, forked from FairyBBS.
It looks like:
Topics
Nodes
Mange
Tested on Django 1.8.6
Major features:
- Whole user manage system, contains registration, login, change password, retrieve;
- Users can create topics, append topics, have comments on topics.
- Send notifications when others @YOU in anywhere.
- Markdown supported, whether in topics or comments.
- A convenient administrator page, can manage users, topics, nodes.
- A simple keyword search egine, one can search some specific topics.
-
Firstly, make sure all the relevant requirements installed.
-
Do some configure in SYSUVoice/settings.py.
# About database setting DATABASES = { 'default': { 'ENGINE': '', 'NAME': '', 'USER': '', 'PASSWORD': '', 'HOST': '', 'PORT': '', } } # Settings about email adress(used when reset password). EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.qq.com' EMAIL_PORT = 25 EMAIL_HOST_USER = '[email protected]' EMAIL_HOST_PASSWORD = 'xxxxxxx'
-
Start corresponding database service.
-
Change directory SYSUVoice/ , run
python manage.py runserver
. Just looks like the followings:$ python manage.py runserver Performing system checks... System check identified no issues (0 silenced). March 25, 2016 - 15:10:30 Django version 1.8.6, using settings 'SYSUVoice.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C.