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