~ubuntu-branches/ubuntu/utopic/schooltool.gradebook/utopic

« back to all changes in this revision

Viewing changes to base.cfg

  • Committer: Gediminas Paulauskas
  • Date: 2013-08-01 18:42:41 UTC
  • mfrom: (1.1.21)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: menesis@pov.lt-20130801184241-lzdawgpzlkpyyblv
* New upstream release.
* debian/control: requires python-schooltool (>= 1:2.5~)
* debian/watch: change series to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
[buildout]
2
 
extends = http://ftp.schooltool.org/schooltool/flourish/versions.cfg
 
2
extends = http://ftp.schooltool.org/schooltool/trunk/versions.cfg
3
3
versions = versions
4
4
newest = false
5
5
find-links =
6
 
    http://ftp.schooltool.org/schooltool/flourish/
7
 
    http://ftp.schooltool.org/schooltool/flourish/dev/
8
 
parts = package test scripts ctags omelette
 
6
    http://ftp.schooltool.org/schooltool/trunk/
 
7
    http://ftp.schooltool.org/schooltool/trunk/dev/
 
8
parts = package test supervisor celery scripts ctags omelette
9
9
 
10
10
[package]
11
11
recipe = zc.recipe.egg:eggs
18
18
unzip = true
19
19
eggs =
20
20
    ${package:eggs}
 
21
    ZODB3
 
22
    redis
21
23
    schooltool
22
24
    schooltool.devtools
 
25
scripts = # ZODB3:
 
26
          runzeo
 
27
          zeopack
 
28
          # schooltool.devtools:
 
29
          i18nextract
 
30
          runfdoctests
 
31
          # schooltool:
 
32
          make-schooltool-instance
 
33
          start-schooltool-instance
 
34
          schooltool-server
 
35
 
23
36
interpreter = python
24
37
 
 
38
[supervisor]
 
39
recipe = zc.recipe.egg:scripts
 
40
unzip = true
 
41
eggs = supervisor
 
42
scripts = supervisord
 
43
          supervisorctl
 
44
          pidproxy
 
45
          # Useful script if you want to toy with supervisor settings
 
46
          #echo_supervisord_conf
 
47
initialization =
 
48
    import os
 
49
    if os.path.exists('instance'): os.chdir('instance')
 
50
 
 
51
[celery]
 
52
recipe = zc.recipe.egg:scripts
 
53
unzip = true
 
54
eggs = ${package:eggs}
 
55
       celery
 
56
       redis
 
57
scripts = # celery:
 
58
          #celerybeat
 
59
          celeryd
 
60
          celeryev
 
61
          celeryctl
 
62
          #camqadm
 
63
          #celeryd-multi
 
64
 
 
65
 
25
66
[test]
26
67
recipe = schooltool.devtools:testrunner
27
68
eggs = ${package:eggs}