mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-05 16:56:19 +00:00
add default values to .env variables for build step
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m35s
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m35s
This commit is contained in:
parent
cc3d2ab3b7
commit
12074c7752
@ -13,9 +13,9 @@ logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
env.read_env(os.path.join(BASE_DIR, ".env"))
|
||||
PERSON_VERIFY_BASE_URL = env.str("PERSON_VERIFY_BASE_URL")
|
||||
OMADA_PROXY_API_KEY = env.str("OMADA_PROXY_API_KEY")
|
||||
OMADA_PROXY_URL = env("OMADA_PROXY_URL")
|
||||
PERSON_VERIFY_BASE_URL = env.str("PERSON_VERIFY_BASE_URL", default="") # type: ignore
|
||||
OMADA_PROXY_API_KEY = env.str("OMADA_PROXY_API_KEY", default="") # type: ignore
|
||||
OMADA_PROXY_URL = env("OMADA_PROXY_URL", default="") # type: ignore
|
||||
OMADA_SITE_ID = env(
|
||||
"OMADA_SITE_ID",
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user