-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
23 lines (17 loc) · 1002 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: UTF-8 -*-
################################################################################
# General configuration #
################################################################################
SYNC_POLLING_INTERVAL = 300 # in seconds
################################################################################
# Cassandra configuration #
################################################################################
CASSANDRA_CONTACT_POINTS = ["127.0.0.1"]
CASSANDRA_PORT = 9042
CASSANDRA_KEYSPACE = "simbiose"
################################################################################
# Elasticsearch configuration #
################################################################################
ELASTICSEARCH_NODES = ["127.0.0.1"]
ELASTICSEARCH_INDEX_NAME = "simbiose"
ELASTICSEARCH_DOC_TYPE = "films"