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