mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
8 lines
162 B
Python
8 lines
162 B
Python
from configurations import Configuration, values
|
|
|
|
|
|
class DotEnvConfiguration(Configuration):
|
|
|
|
DOTENV = 'test_project/.env'
|
|
|
|
DOTENV_VALUE = values.Value()
|