File: INSTALL

package info (click to toggle)
dico 2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,876 kB
  • ctags: 11,307
  • sloc: ansic: 78,537; sh: 46,494; python: 5,487; lex: 2,617; yacc: 1,436; tcl: 1,434; makefile: 1,267; perl: 655; lisp: 463; awk: 300; php: 59; cpp: 44; fortran: 25; asm: 19; sed: 16; xml: 8
file content (53 lines) | stat: -rw-r--r-- 1,398 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
GNU Dico - Dicoweb INSTALL
Copyright (C) 2008-2010, 2012, 2013 Wojciech Polak

* Dicoweb requirements
======================

- Django 1.4+ -- a Python Web framework (http://www.djangoproject.com/)
- Wit -- a wiki translator distributed within GNU Dico.
  (http://puszcza.gnu.org.ua/projects/wit/)

* Installation instructions
===========================

Rename 'settings-sample.py' to 'settings.py' and edit your
local Dicoweb site configuration.

See https://docs.djangoproject.com/en/dev/howto/deployment/
for usual Django applications deployment.


** The development/test server
------------------------------

Change the current working directory into the `dicoweb' directory
and run the command `python manage.py runserver'. You will see
the following output:

 Validating models...
 0 errors found.

 Django version 1.4.5, using settings 'dicoweb.settings'
 Development server is running at http://127.0.0.1:8000/
 Quit the server with CONTROL-C.

** Production server with mod_wsgi
----------------------------------

Apache configuration:

  LoadModule wsgi_module modules/mod_wsgi.so
  WSGIScriptAlias / /usr/local/django/dicoweb/wsgi.py
  Alias /static "/usr/local/django/dicoweb/static"

More detailed information is available at:
http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango



Local Variables:
mode: outline
paragraph-separate: "[ 	]*$"
version-control: never
End: