1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- # wger
- from wger.settings_global import *
- # Use 'DEBUG = True' to get more details for server errors
- DEBUG = True
- # List of administrations
- ADMINS = (('Colin Powell', 'colin@unbl.ink'), )
- MANAGERS = ADMINS
- # SERVER_EMAIL = 'info@my-domain.com'
- # The email address that error messages (and only error messages, such as
- # internal server errors) come from, such as those sent to ADMINS and MANAGERS.
- DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.postgresql',
- 'NAME': 'wger',
- 'USER': 'wger',
- 'PASSWORD': '{{wger_db_pass}}',
- 'HOST': 'db.service',
- 'PORT': '5432',
- }
- } # yapf: disable
- # Timezone for this installation. Consult settings_global.py for more information
- TIME_ZONE = 'US/Eastern'
- # Make this unique, and don't share it with anybody.
- SECRET_KEY = '{{wger_secret_key}}'
- # Your reCaptcha keys
- RECAPTCHA_PUBLIC_KEY = ''
- RECAPTCHA_PRIVATE_KEY = ''
- NOCAPTCHA = True
- # The site's URL (e.g. http://www.my-local-gym.com or http://localhost:8000)
- # This is needed for uploaded files and images (exercise images, etc.) to be
- # properly served.
- SITE_URL = 'https://fit.unbl.ink'
- # Path to uploaded files
- # Absolute filesystem path to the directory that will hold user-uploaded files.
- MEDIA_ROOT = '/usr/local/www/wger/media/'
- MEDIA_URL = '/media/'
- STATIC_ROOT = '/usr/local/www/wger/static/'
- STATIC_URL = '/static/'
- COMPRESS_URL = '/usr/local/www/wger/static/compress/'
- # Allow all hosts to access the application. Change if used in production.
- ALLOWED_HOSTS = ['*']
- # This might be a good idea if you setup redis
- #SESSION_ENGINE = "django.contrib.sessions.backends.cache"
- # Configure a real backend in production
- # See: https://docs.djangoproject.com/en/dev/topics/email/#email-backends
- if DEBUG:
- EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
- # Sender address used for sent emails
- WGER_SETTINGS['EMAIL_FROM'] = 'wger Workout Manager <wger@example.com>'
- DEFAULT_FROM_EMAIL = WGER_SETTINGS['EMAIL_FROM']
- # Your twitter handle, if you have one for this instance.
- #WGER_SETTINGS['TWITTER'] = ''
|