You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piomint/piomint/pwa_settings.py

34 lines
933 B

import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
PWA_APP_NAME = 'PIOMINT'
PWA_APP_DESCRIPTION = "PioneerMinistryTime"
PWA_APP_THEME_COLOR = '#9FEDD7'
PWA_APP_BACKGROUND_COLOR = '#9FEDD7'
PWA_APP_DISPLAY = 'standalone'
PWA_APP_SCOPE = '/'
PWA_APP_ORIENTATION = 'portrait'
PWA_APP_START_URL = '/app/'
PWA_APP_STATUS_BAR_COLOR = 'black-translucent'
PWA_SERVICE_WORKER_PATH = os.path.join(BASE_DIR, 'app/static/app/js', 'serviceworker.js')
PWA_APP_ICONS = [
{
'src': '/static/app/images/appleicon.png',
'sizes': '160x160'
}
]
PWA_APP_ICONS_APPLE = [
{
'src': '/static/app/images/appleicon.png',
'sizes': '160x160'
}
]
PWA_APP_SPLASH_SCREEN = [
{
'src': '/static/app/images/splashscreen.png',
'media': '(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)'
}
]
PWA_APP_DIR = 'ltr'
PWA_APP_LANG = 'de'

Powered by TurnKey Linux.