mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-14 10:27:04 +01:00
6 lines
210 B
Python
6 lines
210 B
Python
|
import os
|
||
|
|
||
|
# Check if Solr connection information was provided in the environment
|
||
|
SOLR_SERVER = os.environ.get('SOLR_SERVER', 'http://localhost:8080/solr')
|
||
|
SOLR_CORE = os.environ.get('SOLR_CORE', 'statistics')
|