close
Warning:
Error with navigation contributor "LoginModule"
- Timestamp:
-
Aug 18, 2011, 12:30:03 PM (14 years ago)
- Author:
-
slav0nic
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v1
|
v1
|
|
| | 1 | DjangoBB compared with 2 parts: |
| | 2 | * DjangoBB app |
| | 3 | * Djangobb [basic project] (example of usage for quick install) |
| | 4 | |
| | 5 | == Installation process == |
| | 6 | Preinstall requiments: |
| | 7 | * virtualenv |
| | 8 | * setuptools or pip |
| | 9 | |
| | 10 | Download latest source and install app: |
| | 11 | |
| | 12 | {{{ |
| | 13 | wget https://bitbucket.org/slav0nic/djangobb/get/tip.tar.gz |
| | 14 | tar zxvf tip.tar.gz |
| | 15 | cd <place_for_virutalenv_dir> |
| | 16 | source .env/bin/activate |
| | 17 | # setup.py from djangobb app |
| | 18 | ./setup.py install |
| | 19 | # ./setup.py develop will be ok too if your planing upgrade dajngobb from hg |
| | 20 | |
| | 21 | }}} |
| | 22 | |
| | 23 | Download and setup basic project: |
| | 24 | |
| | 25 | {{{ |
| | 26 | wget https://bitbucket.org/slav0nic/djangobb_project/get/tip.tar.gz |
| | 27 | tar zxvf tip.tar.gz |
| | 28 | cd slav0nic-djangobb_project-tip/ |
| | 29 | pip install requirements.txt |
| | 30 | cd basic_project/ |
| | 31 | touch local_settings.py |
| | 32 | # set DATABASE |
| | 33 | pip install ../requirements.txt |
| | 34 | ./manage.py syncdb --all |
| | 35 | ./manage.py runserver |
| | 36 | }}} |
| | 37 | |
| | 38 | Also u can put djangobb_forum to your django project as app and install requiments via pip. |
| | 39 | |