##// END OF EJS Templates
Merged in xdevelnet/neboard/xdevelnet/readmemarkdown-edited-online-with-bitbuc-1462787157183 (pull request #18)...
Merged in xdevelnet/neboard/xdevelnet/readmemarkdown-edited-online-with-bitbuc-1462787157183 (pull request #18) readme.markdown edited online with Bitbucket

File last commit:

r1535:748270a0 xdevelnet/readmem...
r1536:332078ad merge decentral
Show More
readme.markdown
69 lines | 1.9 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/
# INSTALLATION #
Xdevelnet
readme.markdown edited online with Bitbucket
r1535 1. Download application and move inside it:
`hg clone https://bitbucket.org/neko259/neboard`
`cd neboard`
neko259
Updated default settings and documents
r1523
Xdevelnet
readme.markdown edited online with Bitbucket
r1535 If you wish to use *decentral* version, change branch to *decentral*:
`hg up decentral`
neko259
Updated default settings and documents
r1523
Xdevelnet
readme.markdown edited online with Bitbucket
r1535 2. Install all application dependencies:
Some minimal system-wide depenencies:
neko259
Updated default settings and documents
r1523
Xdevelnet
readme.markdown edited online with Bitbucket
r1535 * python3
* pip/pip3
* jpeg
Python dependencies:
`pip3 install -r requirements.txt`
You can use virtualenv to speed up the process or avoid conflicts.
neko259
Updated default settings and documents
r1523
Xdevelnet
readme.markdown edited online with Bitbucket
r1535 3. Setup a database in `neboard/settings.py`. You can also change other settings like search engine.
Depending on configured database and search engine, you need to install corresponding dependencies manually.
Default database is *sqlite*, default search engine is *whoosh*.
4. Setup SECRET_KEY to a secret value in `neboard/settings.py
5. Run `./manage.py migrate` to apply all migrations
6. Apply config changes to `boards/config/config.ini`. You can see the default settings in `boards/config/default_config.ini`
7. If you want to use decetral engine, run `./manage.py generate_keypair` to generate keys
neko259
Fixed readme syntax
r433
# RUNNING #
neko259
Updated default settings and documents
r1523 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
Updated default settings and documents
r1523 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
Updated default settings and documents
r1523 When running for the first time, you need to setup at least one section tag.
Go to the admin page and manually create one tag with "required" property set.
neko259
Added upgrade section to the readme file
r453 # UPGRADE #
1. Backup your project data.
neko259
readme.markdown edited online with Bitbucket
r1155 2. Copy the project contents over the old project directory
3. Run migrations by `./manage.py migrate`
neko259
Added upgrade section to the readme file
r453
You can also just clone the mercurial project and pull it to update
neko259
Fixed readme syntax
r433 # CONCLUSION #
Xdevelnet
readme.markdown edited online with Bitbucket
r1535 Enjoy our software and thank you!