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.
26 lines
623 B
26 lines
623 B
CSRF_COOKIE_SECURE = False |
|
DEBUG = True |
|
POSTMARK_API_KEY = '' |
|
SECRET_KEY = 'changeme' |
|
SESSION_COOKIE_SECURE = False |
|
SSLIFY_DISABLE = False |
|
STRIPE_SECRET_KEY = '' |
|
USE_HTTPS = False |
|
|
|
DATABASES = { |
|
'default': { |
|
'ENGINE': 'django.db.backends.postgresql_psycopg2', |
|
'NAME': 'snipt', |
|
'USER': 'snipt', |
|
'PASSWORD': 'password', |
|
'HOST': 'localhost', |
|
'PORT': '' |
|
} |
|
} |
|
HAYSTACK_CONNECTIONS = { |
|
'default': { |
|
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine', |
|
'URL': 'http://127.0.0.1:9200/', |
|
'INDEX_NAME': 'haystack', |
|
}, |
|
}
|
|
|