This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildout.cfg
54 lines (42 loc) · 1.52 KB
/
buildout.cfg
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
54
[buildout]
extends =
http://dist.plone.org/release/4.3.12/versions.cfg
./release/latest.cfg
develop = .
newest = false
show-picked-versions = true
package-name = onegov.municipality
parts =
[onegov]
base =
Plone
plone4.csrffixes
Products.PloneHotfix20160830==1.0
Products.PloneHotfix20161129==1.0
Products.PloneHotfix20170117==1.0
Products.PloneHotfix20171128==1.0
Pillow
modules =
onegov.municipality
test =
develop =
reservations-database = postgresql+psycopg2://user:password@localhost:5432/database
[instance]
zope-conf-additional =
<product-config seantis.reservation>
# seantis.reservation supports multiple database connections on a single
# zope instance. Each site on an instance may have its own connection.
# this can be configured by using absolute values:
# dsn-mysite postgresql+psycopg2://user:password@localhost:5432/mysite
dsn ${onegov:reservations-database}
# where dsn-mysite is the dsn for the site with the id 'mysite' and
# where dsn is the default dsn for all other sites (must be present)
# alternatively a wildcard may be used:
# dsn postgresql+psycopg2://user:password@localhost:5432/{*}
# here, {*} is replaced by the site id and will result in the following
# dsn strings for the sites mysite and yoursite:
# mysite:
# postgresql+psycopg2://user:password@localhost:5432/mysite
# yoursite:
# postgresql+psycopg2://user:password@localhost:5432/yoursite
</product-config>