Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.39 KB | None | 0 0
  1. [export]
  2.  
  3.  
  4.  
  5.  
  6. ADMINS = (('System Administrator', 'robert.zywucki@grabone.co.nz'),)
  7. API_CLIENT = u'APIClient' ###
  8. API_MODULE = u'restauranthub.lib.api' ###
  9. BROKER_BACKEND = 'memory' ###
  10.  
  11.  
  12.  
  13. ### DEBUG_PROPAGATE_EXCEPTIONS = False
  14. DEBUG_TOOLBAR_CONFIG = {'SHOW_COLLAPSED': True, 'ROOT_TAG_EXTRA_ATTRS': 'ng-non-bindable'} ###
  15. DEBUG_TOOLBAR_PANELS = ['debug_toolbar.panels.versions.VersionsPanel', 'debug_toolbar.panels.timer.TimerPanel', 'debug_toolbar.panels.settings.SettingsPanel', 'debug_toolbar.panels.headers.HeadersPanel', 'debug_toolbar.panels.request.RequestPanel', 'debug_toolbar.panels.sql.SQLPanel', 'debug_toolbar.panels.staticfiles.StaticFilesPanel', 'debug_toolbar.panels.cache.CachePanel', 'debug_toolbar.panels.signals.SignalsPanel', 'debug_toolbar.panels.logging.LoggingPanel', 'debug_toolbar.panels.redirects.RedirectsPanel', 'elastic_panel.panel.ElasticDebugPanel', 'template_timings_panel.panels.TemplateTimings.TemplateTimings'] ###
  16. DEBUG_TOOLBAR_PATCH_SETTINGS = False ###
  17. ### DECIMAL_SEPARATOR = '.'
  18. ### DEFAULT_CHARSET = 'utf-8'
  19. ### DEFAULT_CONTENT_TYPE = 'text/html'
  20.  
  21. #DJANGO_APPS = ('django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.humanize', u'daterange_filter') ###
  22. ELASTICSEARCH = {'indices': {'restauranthub.nz': {'cluster': 'default', 'number_of_replicas': 1, 'number_of_shards': 5}}, 'clusters': {'default': [{'host': '127.0.0.1', 'port': '9205'}], 'prod': [{'host': 'es-office.grabone.co.nz', 'port': '80'}]}, 'default_index': 'restauranthub.nz', 'templates': [('restauranthub', '/mnt/hgfs/Projects/restauranthub/restauranthub/es_scripts/index_template.yaml')]} ###
  23. ELASTICSEARCH_INDEX = 'restauranthub' ###
  24.  
  25. #EMAIL_BACKEND = 'email_hijacker.backends.hijacker.EmailBackend'
  26. #ENVIRONMENT = 'development' ###
  27.  
  28. FIRST_DAY_OF_WEEK = 1
  29. ### FIXTURE_DIRS = ()
  30. FORBIDDEN_DJANGO_COMMANDS = [u'reset_db'] ###
  31. ### FORCE_SCRIPT_NAME = None
  32.  
  33.  
  34. #MEDIA_ROOT = '/mnt/hgfs/Projects/restauranthub/restauranthub/.media'
  35. #MEDIA_URL = '//delta-media.grabone.co.nz/inv/'
  36. ### MESSAGE_STORAGE = 'django.contrib.messages.storage.fallback.FallbackStorage'
  37. #MESSAGE_TAGS = {40: 'danger', 25: 'success', 10: 'debug', 20: 'info', 30: 'warning'} ###
  38. ### MIGRATION_MODULES = {}
  39.  
  40. MONTH_DAY_FORMAT = u'j F'
  41.  
  42. REDIS_DB = {'host': '127.0.0.1', 'port': '6379', 'database': '1'} ###
  43.  
  44. REST_FRAMEWORK = {u'DEFAULT_AUTHENTICATION_CLASSES': (u'restauranthub.apps.bookingwidget.rest_framework_authentication.BookingWidgetClientAuthentication',), u'DEFAULT_RENDERER_CLASSES': (u'rest_framework.renderers.JSONRenderer', u'rest_framework.renderers.BrowsableAPIRenderer')} ###
  45. ROOT_URLCONF = 'restauranthub.urls' ###
  46.  
  47.  
  48. STATICFILES_DIRS = ('/mnt/hgfs/Projects/restauranthub/restauranthub/static', '/home/rob/.virtualenvs/restauranthub/lib/python2.7/site-packages/grabone_settings/settings/../contrib/base_templates/templates/images')
  49. ### STATICFILES_FINDERS = ('django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder')
  50. ### STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
  51. STATIC_ROOT = '/mnt/hgfs/Projects/restauranthub/restauranthub/.static'
  52. STATIC_URL = '/static/'
  53. SUPPORT_EMAIL = u'info@restauranthub.co.nz' ###
  54. ### TEMPLATES = [{'DIRS': ('/mnt/hgfs/Projects/restauranthub/restauranthub/templates',), 'APP_DIRS': True, 'OPTIONS': {'context_processors': ('django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.template.context_processors.debug', 'django.template.context_processors.i18n', 'django.template.context_processors.media', 'django.template.context_processors.static', 'django.template.context_processors.tz', 'django.contrib.messages.context_processors.messages', 'grabone_settings.contrib.context_processors.common_settings', u'restauranthub.apps.restaurants.context_processors.search_areas', u'restauranthub.apps.restaurants.context_processors.dining_types', u'restauranthub.apps.restaurants.context_processors.pax_options', u'minicms.context_processors.minicms_loader')}, 'BACKEND': 'django.template.backends.django.DjangoTemplates'}]
  55. ### TEMPLATE_CONTEXT_PROCESSORS = ('django.contrib.auth.context_processors.auth', 'django.template.context_processors.debug', 'django.template.context_processors.i18n', 'django.template.context_processors.media', 'django.template.context_processors.static', 'django.template.context_processors.tz', 'django.contrib.messages.context_processors.messages')
  56. ### TEMPLATE_DEBUG = False
  57. ### TEMPLATE_DIRS = ()
  58. ### TEMPLATE_LOADERS = ('django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader')
  59. ### TEMPLATE_STRING_IF_INVALID = ''
  60. ### TEST_NON_SERIALIZED_APPS = []
  61. TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
  62. ### THOUSAND_SEPARATOR = ','
  63. TIME_FORMAT = u'H:i'
  64. ### TIME_INPUT_FORMATS = ('%H:%M:%S', '%H:%M:%S.%f', '%H:%M')
  65. TIME_ZONE = 'Pacific/Auckland'
  66. ### USE_ETAGS = False
  67. ### USE_I18N = True
  68. ### USE_L10N = False
  69. ### USE_THOUSAND_SEPARATOR = False
  70. USE_TZ = True
  71. ### USE_X_FORWARDED_HOST = False
  72. WSGI_APPLICATION = 'restauranthub.wsgi.application'
  73. XFRAME_EXEMPT_REGEX = '(.*)' ###
  74. ### X_FRAME_OPTIONS = 'SAMEORIGIN'
  75. YEAR_MONTH_FORMAT = u'F Y'
  76.  
  77.  
  78.  
  79. DEBUG_TOOLBAR : 1
  80.  
  81. # My Database Port (See: http://10.50.20.168/?system=grabone2)
  82. DJANGO_DB_HOST : 127.0.0.1
  83. DJANGO_DB_USERNAME : root
  84. DJANGO_DB_PASSWORD : watchthethrone
  85. DJANGO_DB_PORT : 20385
  86. #DJANGO_DB_PORT: 20341
  87.  
  88. DJANGO_DB_HOST : 127.0.0.1
  89. DJANGO_DB_USERNAME : root
  90. DJANGO_DB_PASSWORD : aaa
  91. DJANGO_DB_PORT : 3306
  92.  
  93.  
  94. ES_DEV_SUFFIX : restauranthub
  95. DJANGO_ELASTICSEARCH_HOST : 127.0.0.1
  96. DJANGO_ELASTICSEARCH_PORT : 9200
  97.  
  98. DJANGO_SYSADMIN_EMAIL_ADDRESS : robert.zywucki@grabone.co.nz
  99. DJANGO_HIJACKER_EMAIL_ADDRESS : robert.zywucki@grabone.co.nz
  100.  
  101. SECRET_KEY : iudfghuisebdhugurfibgu
  102.  
  103. DJANGO_MEDIA_URL : //delta-media.grabone.co.nz/inv/
  104.  
  105. DJANGO_RUNSERVER_DEFAULT_PORT : 10000
  106.  
  107. REDIS_DB_NUMBER : 1
  108.  
  109. DJANGO_ELASTICSEARCH_INDEX : restauranthub
  110.  
  111. GOMEDIA_ASSET_URL : https://mediacdn.grabone.co.nz/asset/{0}
  112. GOMEDIA_UPLOAD_URL : https://media2.grabone.co.nz/asset/x
  113. GOMEDIA_CLIENT_TOKEN : 62hQiN5zJL
  114. GOMEDIA_APPLICATION_TAG : restauranthub
  115.  
  116. ;GRABONE_API_URL : http://localhost:8000/api/
  117. GRABONE_API_URL : https://new.grabone.co.nz/api/
  118.  
  119. DJANGO_SMTP_HOST : grabone.co.nz
  120. DJANGO_SMTP_PORT : 1000
  121.  
  122.  
  123.  
  124.  
  125.  
  126. DJANGO_SETTINGS_ENVIRONMENT: development
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement