1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pepettes_ynh.git synced 2024-09-03 19:56:35 +02:00
pepettes_ynh/conf/settings.py
2021-02-19 02:06:17 +01:00

25 lines
602 B
Python

ENV = 'production'
PORT = __PORT__
DOMAIN = 'https://__DOMAIN__'
SECRET_KEY = '__SECRET__'
SECRET_CSRF_KEY = '__CSRF_KEY__'
LANGUAGES = ['en', 'fr']
BABEL_TRANSLATION_DIRECTORIES = 'locales'
# Customization
CUSTOM = {}
CUSTOM['name'] = '__PROJECT_NAME__'
CUSTOM['contact_url'] = '__CONTACT_URL__'
CUSTOM['logo'] = '__LOGO__'
CUSTOM['favicon'] = '__FAVICON__'
CUSTOM['currencies'] = [
('EUR', ''),
('USD', '$')
]
# Stripe keys
CUSTOM['stripe_publishable_key'] = '__PUBLISHABLE_KEY__'
STRIPE_SECRET_KEY = '__SECRET_KEY__'
# Stripe subscription data
DONATION={'one_time':{}, 'recuring': {}}