mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-14 02:27:02 +01:00
Alan Orth
c027f01b48
This follows guidance from several well-known Python best practices guides. Basically, the idea is create a package for the application that is comprised of several re-usable modules. See: https://docs.python-guide.org/writing/structure/ See: https://realpython.com/python-application-layouts/
12 lines
455 B
Python
12 lines
455 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')
|
|
|
|
DATABASE_NAME = os.environ.get('DATABASE_NAME', 'dspacestatistics')
|
|
DATABASE_USER = os.environ.get('DATABASE_USER', 'dspacestatistics')
|
|
DATABASE_PASS = os.environ.get('DATABASE_PASS', 'dspacestatistics')
|
|
DATABASE_HOST = os.environ.get('DATABASE_HOST', 'localhost')
|
|
|
|
# vim: set sw=4 ts=4 expandtab:
|