Created
November 15, 2021 00:44
-
-
Save cassioeskelsen/e93d323157d739f9d426749dc61af88a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from src.xpto.common.config.common_settings import CommonSettings | |
class InvoicesSettings(CommonSettings): | |
mongodb_conn_string: str | |
class Config: | |
env_file = 'settings/invoices-dev.env' | |
fields = { | |
'mongodb_conn_string': { | |
'env': 'mongodb_conn_string' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment