INTRODUCTION
FlaskBB is a forum software written in python
using the micro framework Flask.
I don't have a server at the moment, so the demo does not work at http://flaskbb.org
but you can view a few picture here.
FEATURES
- A Bulletin Board like FluxBB, DjangoBB in Flask
- Private Messages
- Admin Interface
- Group based permissions
- BBCode support
- Topic Tracker
- Unread Topics/Forums
TODO
- A own theme and make FlaskBB themable with Flask-Themes2
- Localization (Babel)
- Searching for members, posts,...
- Figure out how to integrate it in another app where you can use the models from flaskbb and so on..
DEPENDENCIES
INSTALLATION
- Create a virtualenv
- Install the dependencies with
pip install -r requirements.txt
- Copy
flaskbb/configs/development.py.example
to flaskbb/configs/development.py
- Create the database with some example content
python manage.py createall
- Run the development server
python manage.py runserver
- Visit localhost:8080
LICENSE
BSD LICENSE
ACKNOWLEDGEMENTS
/r/flask, Flask and it's extensions.