Skip to content

Commit

Permalink
add ml piece repo as default in rest
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicvaz committed Nov 28, 2023
1 parent 1987f90 commit 30aeb81
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion rest/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Settings(BaseSettings):
DOMINO_LOCAL_WORKFLOWS_REPOSITORY: str = '/opt/airflow/dags'

# Default domino pieces repository
DOMINO_DEFAULT_PIECES_REPOSITORY_TOKEN: str | None = os.environ.get('DOMINO_DEFAULT_PIECES_REPOSITORY_TOKEN', None)
DOMINO_DEFAULT_PIECES_REPOSITORY_TOKEN: str | None = os.environ.get('DOMINO_DEFAULT_PIECES_REPOSITORY_TOKEN', None)
DEFAULT_REPOSITORIES_LIST: list[dict] = [
dict(
path="Tauffer-Consulting/default_domino_pieces",
Expand Down Expand Up @@ -68,6 +68,13 @@ class Settings(BaseSettings):
source='github',
require_token=True,
url='https://github.com/Tauffer-Consulting/data_apis_domino_pieces'
),
dict(
path="Tauffer-Consulting/ml_domino_pieces",
version='0.2.0',
source='github',
require_token=True,
url='https://github.com/Tauffer-Consulting/ml_domino_pieces'
)
]

Expand Down

0 comments on commit 30aeb81

Please sign in to comment.