##// END OF EJS Templates
Merged with 1.5 dev branch
Merged with 1.5 dev branch

File last commit:

r453:3d1b5816 1.5-dev
r463:8531d7b0 merge 1.5 default
Show More
readme.markdown
55 lines | 1.2 KiB | text/x-markdown | MarkdownLexer
neko259
Fixed readme syntax
r433 # INTRO #
This project aims to create centralized forum-like discussion platform with
anonymity in mind.
Main repository: https://bitbucket.org/neko259/neboard/
neko259
Another fixes to the readme
r434
neko259
Fixed readme syntax
r433 Site: http://neboard.me/
# DEPENDENCIES #
## REQUIRED ##
* pillow
* django >= 1.6
* django_cleanup
* django-markupfield
* markdown
* python-markdown
* django-simple-captcha
* line-profiler
## OPTIONAL ##
* django-debug-toolbar
# INSTALLATION #
1. Install all dependencies over pip or system-wide
neko259
Added upgrade section to the readme file
r453 2. Setup a database in `neboard/settings.py`
neko259
Even more readme fixes!
r435 3. Run `./manage.py syncdb` and ensure the database was created
4. Run `./manage.py migrate boards` to apply all south migrations
neko259
Fixed readme syntax
r433
# RUNNING #
You can run the server using django default embedded webserver by running
neko259
Another fixes to the readme
r434
neko259
Fixed readme syntax
r433 ./manage.py runserver <address>:<port>
neko259
Another fixes to the readme
r434
neko259
Fixed readme syntax
r433 See django-admin command help for details
neko259
Another fixes to the readme
r434
neko259
Fixed readme syntax
r433 Also consider using wsgi or fcgi interfaces on production servers.
neko259
Added upgrade section to the readme file
r453 # UPGRADE #
1. Backup your project data.
2. Save the settings in `neboard/settings.py` and `boards/settings.py`
3. Copy the project contents over the old project directory
4. Run migrations by `./manage.py migrate boards`
You can also just clone the mercurial project and pull it to update
neko259
Fixed readme syntax
r433 # CONCLUSION #
Enjoy our software and thank you!