6 lines
208 B
Python
6 lines
208 B
Python
import os
|
|
|
|
def get_engine_configuration():
|
|
engine_string = os.getenv("DEV_URIA_BIBLIOGAME_DEBUG", False)
|
|
echo = os.getenv("DEV_URIA_BIBLIOGAME_CONFIG_DB", "sqlite://")
|
|
return (engine_string, echo) |