2009-01-06 15:45:19 +01:00
|
|
|
# Foodsoft configuration
|
|
|
|
|
|
|
|
development: &defaults
|
2009-08-13 16:32:38 +02:00
|
|
|
# If you wanna serve more than one foodcoop with one installation
|
|
|
|
# Don't forget to setup databases for each foodcoop. See also MULTI_COOP_INSTALL
|
|
|
|
multi_coop_install: false
|
|
|
|
|
2010-03-20 14:49:46 +01:00
|
|
|
# http config for this host
|
|
|
|
# Required for action mailer
|
|
|
|
protocol: http
|
|
|
|
host: localhost
|
|
|
|
port: 3000
|
|
|
|
|
2009-01-06 15:45:19 +01:00
|
|
|
# name of this foodcoop
|
|
|
|
name: FC Test
|
|
|
|
# foodcoop contact information (used for FAX messages)
|
|
|
|
contact:
|
|
|
|
street: Grüne Straße 103
|
|
|
|
zip_code: "10997"
|
|
|
|
city: Berlin
|
|
|
|
country: Deutschland
|
|
|
|
email: foodsoft@myfoodcoop.org
|
|
|
|
phone: "030 323 23249"
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-02-18 01:06:35 +01:00
|
|
|
# Homepage
|
|
|
|
homepage: http://www.fctest.de
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-01-06 15:45:19 +01:00
|
|
|
# foodsoft documentation URL
|
|
|
|
help_url: http://foodsoft.fcschinke09.de/trac/wiki/FoodsoftDoku
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-01-06 15:45:19 +01:00
|
|
|
# price markup in percent
|
|
|
|
price_markup: 2.0
|
2009-08-05 12:15:37 +02:00
|
|
|
|
|
|
|
# tolerance order option: If set to false, article tolerance values do not count
|
|
|
|
# for total article price as long as the order is not finished.
|
|
|
|
tolerance_is_costly: false
|
|
|
|
|
2009-01-06 15:45:19 +01:00
|
|
|
# email address to be used as sender
|
|
|
|
email_sender: foodsoft@myfoodcoop.org
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-03-17 18:13:00 +01:00
|
|
|
# If your foodcoop uses a mailing list instead of internal messaging system
|
|
|
|
#mailing_list: list@myfoodcoop.org
|
|
|
|
#mailing_list_subscribe: list-subscribe@myfoodcoop.org
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-03-17 18:13:00 +01:00
|
|
|
# Config for the exception_notification plugin
|
2009-01-06 15:45:19 +01:00
|
|
|
notification:
|
|
|
|
error_recipients:
|
2009-02-01 23:09:03 +01:00
|
|
|
- admin@myfoodcoop.org
|
2009-02-02 17:12:08 +01:00
|
|
|
sender_address: "\"FoodSoft Error\" <foodsoft@myfoodcoop.org>"
|
2009-01-06 15:45:19 +01:00
|
|
|
email_prefix: "[FoodSoft]"
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-01-06 15:45:19 +01:00
|
|
|
# Access to sharedLists, the external article-database
|
|
|
|
shared_lists:
|
|
|
|
adapter: mysql
|
|
|
|
host: localhost
|
|
|
|
database: sharedlists_development
|
|
|
|
username: root
|
|
|
|
password:
|
|
|
|
encoding: utf8
|
|
|
|
socket: /opt/lampp/var/mysql/mysql.sock
|
2009-08-05 12:15:37 +02:00
|
|
|
|
2009-01-06 15:45:19 +01:00
|
|
|
# auto-units-conversion
|
|
|
|
# this is used for automatic article-synchronization to handle different units
|
|
|
|
# e.g. when foodcoop-unit should be 500g and supplier-unit is 1kg
|
|
|
|
units:
|
|
|
|
KG: 1
|
|
|
|
1kg: 1
|
|
|
|
500g: 0.5
|
|
|
|
400g: 0.4
|
|
|
|
300g: 0.3
|
|
|
|
250g: 0.25
|
|
|
|
200g: 0.2
|
|
|
|
150g: 0.15
|
|
|
|
125g: 0.125
|
|
|
|
100g: 0.1
|
|
|
|
50g: 0.05
|
|
|
|
|
|
|
|
test:
|
|
|
|
<<: *defaults
|
|
|
|
|
|
|
|
production:
|
|
|
|
<<: *defaults
|