##// END OF EJS Templates
Fixed readme syntax
neko259 -
r433:20cd09ab default
parent child Browse files
Show More
@@ -0,0 +1,46 b''
1 # INTRO #
2
3 This project aims to create centralized forum-like discussion platform with
4 anonymity in mind.
5
6 Main repository: https://bitbucket.org/neko259/neboard/
7 Site: http://neboard.me/
8
9 # DEPENDENCIES #
10
11 ## REQUIRED ##
12
13 * pillow
14 * django >= 1.6
15 * django_cleanup
16 * django-markupfield
17 * markdown
18 * python-markdown
19 * django-simple-captcha
20 * line-profiler
21
22 ## OPTIONAL ##
23
24 * django-debug-toolbar
25
26 # INSTALLATION #
27
28 1. Install all dependencies over pip or system-wide
29 2. Setup a database in neboard/settings.py
30 3. Run
31 ./manage.py syncdb
32 and ensure the database was created
33 4. Run
34 ./manage.py migrate boards
35 to apply all south migrations
36
37 # RUNNING #
38
39 You can run the server using django default embedded webserver by running
40 ./manage.py runserver <address>:<port>
41 See django-admin command help for details
42 Also consider using wsgi or fcgi interfaces on production servers.
43
44 # CONCLUSION #
45
46 Enjoy our software and thank you!
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now