Update settings

This commit is contained in:
Skia 2016-08-02 22:32:13 +02:00
parent db712c86b8
commit 70e723337d
1 changed files with 12 additions and 0 deletions

View File

@ -199,6 +199,13 @@ SITH_BAR_MANAGER = {
'address': "6 Boulevard Anatole France, 90000 Belfort"
}
# Launderette managers
SITH_LAUNDERETTE_MANAGER = {
'name': "Laverie",
'unix_name': "laverie",
'address': "6 Boulevard Anatole France, 90000 Belfort"
}
# Define the date in the year serving as reference for the subscriptions calendar
# (month, day)
SITH_START_DATE = (8, 15) # 15th August
@ -321,3 +328,8 @@ SITH_EBOUTIC_PUB_KEY = ""
with open('./sith/et_keys/pubkey.pem') as f:
SITH_EBOUTIC_PUB_KEY = f.read()
# Launderette variables
SITH_LAUNDERETTE_PRICES = {
'WASHING': 1.0,
'DRYING': 0.75,
}