DjangoBB compared with 2 parts:
- DjangoBB app
- Djangobb basic project (example of usage for quick install)
Installation process
Preinstall requiments:
- virtualenv
- setuptools or pip
Download latest source and install app:
wget https://bitbucket.org/slav0nic/djangobb/get/stable.tar.gz tar zxvf stable.tar.gz virtualenv .env cd <place_for_virtualenv_dir> source .env/bin/activate # setup.py from djangobb app ./setup.py install # ./setup.py develop will be ok too if you are planning to upgrade djangobb from hg
Download and setup basic project:
wget https://bitbucket.org/slav0nic/djangobb_project/get/tip.tar.gz tar zxvf tip.tar.gz cd slav0nic-djangobb_project-tip/ pip install -r requirements.txt cd basic_project/ touch local_settings.py # set DATABASE ./manage.py syncdb --all ./manage.py collectstatic ./manage.py runserver
Also you can add djangobb_forum to your django project as app and install requirements via pip.
Last modified 11 years ago
Last modified on Jan 26, 2014, 11:24:06 PM