91eeac6c40
There is no need to set options other than the foodcoop during every change of the scope. This also makes sure that the correct options will be loaded during testing to fix problems with newer rails versions.
32 lines
675 B
YAML
32 lines
675 B
YAML
# Minimal Foodsoft configuration
|
|
#
|
|
# Without those settings, Foodsoft may not even work.
|
|
# This file is used when running tests. When plugins would modify foodsoft behaviour
|
|
# and they are enabled in the sample configuration, there is stable base to test with.
|
|
|
|
default: &defaults
|
|
multi_coop_install: false
|
|
default_scope: 'f'
|
|
|
|
name: FC Minimal
|
|
|
|
# true by default to keep compat with older installations, but test with false here
|
|
use_nick: false
|
|
|
|
price_markup: 5
|
|
|
|
# do we really need the following ones?
|
|
tax_default: 6.0
|
|
email_sender: noreply@minimal.test
|
|
|
|
host: localhost
|
|
|
|
|
|
development:
|
|
<<: *defaults
|
|
|
|
test:
|
|
<<: *defaults
|
|
|
|
production:
|
|
<<: *defaults
|