mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-02 20:53:33 +00:00
9 lines
328 B
Python
9 lines
328 B
Python
"""Dev."""
|
|
from os import environ
|
|
|
|
GIT_BRANCH_TO_PUBLISH_TO = environ.get("GIT_BRANCH_TO_PUBLISH_TO", default="staging")
|
|
GIT_USERNAME = environ.get("GIT_USERNAME", default="sartography-automated-committer")
|
|
GIT_USER_EMAIL = environ.get(
|
|
"GIT_USER_EMAIL", default="sartography-automated-committer@users.noreply.github.com"
|
|
)
|