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