|
|
11 years ago | |
|---|---|---|
| flaskbb | 11 years ago | |
| logs | 12 years ago | |
| .gitignore | 11 years ago | |
| AUTHORS | 12 years ago | |
| CHANGES | 12 years ago | |
| LICENSE | 12 years ago | |
| Makefile | 11 years ago | |
| README.md | 11 years ago | |
| manage.py | 11 years ago | |
| requirements.txt | 12 years ago | |
| setup.py | 12 years ago | |
| wsgi.py | 12 years ago |
FlaskBB is a forum software written in python using the micro framework Flask.
Create a virtualenv
Install virtualenvwrapper with your package manager or via
sudo pip install virtualenvwrapperAdd these lines to your .bashrc
export WORKON_HOME=$HOME/.virtualenvs # Location for your virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
Create a new virtualenv
mkvirtualenv -a /path/to/flaskbb -p $(which python2) flaskbband finally activate it
workon flaskbbFor more options visit the documentation here.
Install the dependencies
pip install -r requirements.txtCreate the development config
cp flaskbb/configs/development.py.example flaskbb/configs/development.pyCreate the database with some example content
python manage.py createallRun the development server
python manage.py runserverVisit localhost:8080
/r/flask, Flask and it's extensions.