-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #441 from atlas-bi/alpha
- Loading branch information
Showing
197 changed files
with
11,118 additions
and
10,431 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
|
||
steps: | ||
- name: 💾 Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: 🧹 Cleanup apt list | ||
uses: christopherpickering/[email protected] | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,6 +239,13 @@ class Config: | |
|
||
HTTP_VERIFY_SSL = False | ||
|
||
""" | ||
Azure Devops connection | ||
""" | ||
|
||
DEVOPS_URL = "https://dev.azure.com/orgname/" | ||
DEVOPS_TOKEN = r"token" | ||
|
||
""" | ||
Default SQL Connection Settings | ||
""" | ||
|
@@ -266,6 +273,9 @@ class Config: | |
SMTP_SENDER_EMAIL = "[email protected]" | ||
SMTP_DEFAULT_RECIEVER = "[email protected]" | ||
SMTP_SUBJECT_PREFIX = "### " | ||
SMTP_USE_TLS = False | ||
SMTP_USERNAME = None | ||
SMTP_PASSWORD = None | ||
|
||
EXECUTOR_TYPE = "thread" | ||
EXECUTOR_MAX_WORKERS = 12 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
"""empty message | ||
Revision ID: e075a9d31b1a | ||
Revises: 6b8978d637c5 | ||
Create Date: 2023-09-18 15:14:26.310892 | ||
""" | ||
import sqlalchemy as sa | ||
from alembic import op | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'e075a9d31b1a' | ||
down_revision = '6b8978d637c5' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table('task', schema=None) as batch_op: | ||
batch_op.add_column(sa.Column('source_devops', sa.String(length=1000), nullable=True)) | ||
batch_op.add_column(sa.Column('processing_devops', sa.String(length=1000), nullable=True)) | ||
|
||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table('task', schema=None) as batch_op: | ||
batch_op.drop_column('processing_devops') | ||
batch_op.drop_column('source_devops') | ||
|
||
# ### end Alembic commands ### |
Oops, something went wrong.