##// END OF EJS Templates
Another fixes to the readme
neko259 -
r434:e935d941 default
parent child Browse files
Show More
@@ -1,46 +1,54 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 Site: http://neboard.me/
8 Site: http://neboard.me/
8
9
9 # DEPENDENCIES #
10 # DEPENDENCIES #
10
11
11 ## REQUIRED ##
12 ## REQUIRED ##
12
13
13 * pillow
14 * pillow
14 * django >= 1.6
15 * django >= 1.6
15 * django_cleanup
16 * django_cleanup
16 * django-markupfield
17 * django-markupfield
17 * markdown
18 * markdown
18 * python-markdown
19 * python-markdown
19 * django-simple-captcha
20 * django-simple-captcha
20 * line-profiler
21 * line-profiler
21
22
22 ## OPTIONAL ##
23 ## OPTIONAL ##
23
24
24 * django-debug-toolbar
25 * django-debug-toolbar
25
26
26 # INSTALLATION #
27 # INSTALLATION #
27
28
28 1. Install all dependencies over pip or system-wide
29 1. Install all dependencies over pip or system-wide
29 2. Setup a database in neboard/settings.py
30 2. Setup a database in neboard/settings.py
30 3. Run
31 3. Run
32
31 ./manage.py syncdb
33 ./manage.py syncdb
34
32 and ensure the database was created
35 and ensure the database was created
33 4. Run
36 4. Run
37
34 ./manage.py migrate boards
38 ./manage.py migrate boards
39
35 to apply all south migrations
40 to apply all south migrations
36
41
37 # RUNNING #
42 # RUNNING #
38
43
39 You can run the server using django default embedded webserver by running
44 You can run the server using django default embedded webserver by running
45
40 ./manage.py runserver <address>:<port>
46 ./manage.py runserver <address>:<port>
47
41 See django-admin command help for details
48 See django-admin command help for details
49
42 Also consider using wsgi or fcgi interfaces on production servers.
50 Also consider using wsgi or fcgi interfaces on production servers.
43
51
44 # CONCLUSION #
52 # CONCLUSION #
45
53
46 Enjoy our software and thank you!
54 Enjoy our software and thank you!
General Comments 0
You need to be logged in to leave comments. Login now