~stefanfoulis/djangorecipe/subdir

« back to all changes in this revision

Viewing changes to README.txt

  • Committer: Jeroen Vloothuis
  • Date: 2009-12-03 20:21:47 UTC
  • Revision ID: jeroen@jeroen-laptop-20091203202147-p5lc4owcyh19ze6b
Added the posibility to configure more FCGI related options

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
  [buildout]
12
12
  parts = satchmo django
13
13
  eggs = ipython
14
 
  
 
14
 
15
15
  [satchmo]
16
16
  recipe = gocept.download
17
17
  url = http://www.satchmoproject.com/snapshots/satchmo-0.6.tar.gz
18
18
  md5sum = 659a4845c1c731be5cfe29bfcc5d14b1
19
 
  
 
19
 
20
20
  [django]
21
21
  recipe = djangorecipe
22
22
  version = trunk
23
23
  settings = development
24
24
  eggs = ${buildout:eggs}
25
 
  extra-paths = 
 
25
  extra-paths =
26
26
    ${satchmo:location}
27
27
  project = dummyshop
28
28
 
40
40
  Use this instead of the project option when you want to use an egg
41
41
  as the project. This disables the generation of the project
42
42
  structure.
43
 
  
 
43
 
44
44
python
45
45
  This option can be used to specify a specific Python version which can be a
46
46
  different version from the one used to run the buildout.
47
 
  
 
47
 
48
48
version
49
49
  The version argument can accept a few different types of
50
50
  arguments. You can specify `trunk`. In this case it will do a
70
70
  path for the `bin/*` scripts.
71
71
 
72
72
pth-files
73
 
  Adds paths found from a site `.pth` file to the extra-paths.  
 
73
  Adds paths found from a site `.pth` file to the extra-paths.
74
74
  Useful for things like Pinax which maintains its own external_libs dir.
75
75
 
76
76
control-script
113
113
  string by default.
114
114
 
115
115
 
 
116
FCGI specific settings
 
117
======================
 
118
 
 
119
Options for FCGI can be set within a settings file (`settings.py`). The options
 
120
is `FCGI_OPTIONS`. It should be set to a dictionary. The part below is an
 
121
example::
 
122
 
 
123
  FCGI_OPTIONS = {
 
124
      'method': 'threaded',
 
125
  }
 
126
 
 
127
 
116
128
Another example
117
129
===============
118
130
 
120
132
 
121
133
  [buildout]
122
134
  parts = django extras
123
 
  eggs = 
 
135
  eggs =
124
136
    hashlib
125
 
  
 
137
 
126
138
  [extras]
127
139
  recipe = iw.recipe.subversion
128
140
  urls =
129
141
    http://django-command-extensions.googlecode.com/svn/trunk/ django-command-extensions
130
142
    http://django-mptt.googlecode.com/svn/trunk/ django-mptt
131
 
  
 
143
 
132
144
  [django]
133
145
  recipe = djangorecipe
134
146
  version = trunk
135
147
  settings = development
136
148
  project = exampleproject
137
149
  wsgi = true
138
 
  eggs = 
 
150
  eggs =
139
151
    ${buildout:eggs}
140
 
  test = 
 
152
  test =
141
153
    someapp
142
154
    anotherapp
143
155