You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`CODE_MIGRATION_ASSISTANT_APP_NAME`| Name of the Code Migration Assistant application |`code_migration_assistant`|
292
-
|`CODE_MIGRATION_ASSISTANT_LOG_LEVEL`| Log level for the Code Migration Assistant application |`INFO`|
293
-
|`CODE_MIGRATION_ASSISTANT_TARGETS_CONFIG_FILE`| Path to the targets configuration file for Code Migration Assistant |`./config.json`|
294
-
|`CODE_MIGRATION_ASSISTANT_REMOTE_TARGETS_CLONING_PATH`| Path where remote repositories will be cloned by Code Migration Assistant |`./remote-targets`|
295
-
|`AZURE_DEVOPS_PAT`| Azure DevOps Personal Access Token (PAT) |`None`|
296
-
|`GITHUB_TOKEN`| GitHub Personal Access Token (PAT) |`None`|
297
-
|`GITHUB_ENTERPRISE_TOKEN`| GitHub Enterprise Personal Access Token (PAT) |`None`|
298
-
|`CODE_MIGRATION_ASSISTANT_USER_AGENT`| User agent used for HTTP requests by Code Migration Assistant |`alalkamys/code-migration-assistant`|
|`CODE_MIGRATION_ASSISTANT_APP_NAME`| Name of the Code Migration Assistant application |`code_migration_assistant`|
292
+
|`CODE_MIGRATION_ASSISTANT_LOG_LEVEL`| Log level for the Code Migration Assistant application |`INFO`|
293
+
|`CODE_MIGRATION_ASSISTANT_TARGETS_CONFIG_FILE`| Path to the targets configuration file for Code Migration Assistant |`./config.json`|
294
+
|`CODE_MIGRATION_ASSISTANT_REMOTE_TARGETS_CLONING_PATH`| Path where remote repositories will be cloned by Code Migration Assistant |`./remote-targets`|
295
+
|`AZURE_DEVOPS_PAT`| Azure DevOps Personal Access Token (PAT) |`None`|
296
+
|`GITHUB_TOKEN`| GitHub Personal Access Token (PAT) |`None`|
297
+
|`GITHUB_ENTERPRISE_TOKEN`| GitHub Enterprise Personal Access Token (PAT) |`None`|
298
+
|`CODE_MIGRATION_ASSISTANT_USER_AGENT`| User agent used for HTTP requests by Code Migration Assistant |`alalkamys/code-migration-assistant`|
299
+
|`CODE_MIGRATION_ASSISTANT_ACTOR_USERNAME`| Actor username used for git identity setup |`Code Migration Assistant Agent`|
300
+
|`CODE_MIGRATION_ASSISTANT_ACTOR_EMAIL`| Actor email used for git identity setup |`code_migration_assistant_agent@gmail.com`|
Copy file name to clipboardExpand all lines: app/config.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ class AppConfig:
21
21
AZURE_DEVOPS_PAT (str): The Personal Access Token (PAT) for Azure DevOps. Defaults to None.
22
22
GITHUB_TOKEN (str): The Personal Access Token (PAT) for GitHub. Defaults to None.
23
23
GITHUB_ENTERPRISE_TOKEN (str): The Personal Access Token (PAT) for GitHub Enterprise. Defaults to None.
24
-
ACTOR (dict): A dictionary containing the username and email of the application's agent.
24
+
ACTOR (dict): A dictionary containing the username and email of the application's agent. Defaults to {'username': "Code Migration Assistant Agent", 'email': "code_migration_assistant_agent@gmail.com"}
25
25
USER_AGENT (str): The user agent for making HTTP requests. Defaults to "alalkamys/code-migration-assistant".
26
26
LOGGING_CONFIG (dict): Configuration settings for logging.
0 commit comments