mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-14 02:27:02 +01:00
Alan Orth
a51422273c
This parameter is not customizable. All DSpace instances use this name for the Solr statistics core.
9 lines
247 B
Python
9 lines
247 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')
|
|
|
|
SQLITE_DB = os.environ.get('SQLITE_DB', 'statistics.db')
|
|
|
|
# vim: set sw=4 ts=4 expandtab:
|