##// END OF EJS Templates
fix paths readme.markdown
slemonide -
r1209:b9fe757c default
parent child Browse files
Show More
@@ -1,37 +1,37 b''
1 1 # INTRO #
2 2
3 3 This project aims to create centralized forum-like discussion platform with
4 4 anonymity in mind.
5 5
6 6 Main repository: https://bitbucket.org/neko259/neboard/
7 7
8 8 Site: http://neboard.me/
9 9
10 10 # INSTALLATION #
11 11
12 12 1. Install all dependencies over pip or system-wide
13 13 2. Setup a database in `neboard/settings.py`
14 14 3. Run `./manage.py migrate` to apply all south migrations
15 4. Apply config changes to `boards/settings/config.ini`. You can see the default settings in `boards/settings/default_config.ini`
15 4. Apply config changes to `boards/config/config.ini`. You can see the default settings in `boards/config/default_config.ini`
16 16
17 17 # RUNNING #
18 18
19 19 You can run the server using django default embedded webserver by running
20 20
21 21 ./manage.py runserver <address>:<port>
22 22
23 23 See django-admin command help for details
24 24
25 25 Also consider using wsgi or fcgi interfaces on production servers.
26 26
27 27 # UPGRADE #
28 28
29 29 1. Backup your project data.
30 30 2. Copy the project contents over the old project directory
31 31 3. Run migrations by `./manage.py migrate`
32 32
33 33 You can also just clone the mercurial project and pull it to update
34 34
35 35 # CONCLUSION #
36 36
37 37 Enjoy our software and thank you!
General Comments 0
You need to be logged in to leave comments. Login now