This project is a small utility that helps migrating tasks from ClickUp to JIRA.
In order to use the package please install it by running the following command in the directory where the pyproject.toml
is found:
make install
After installing the library run the following command.
make migrate_to_jira
Keep in mind that the following environmental variables need to have a proper value.
Environmental Variable | Required | Default | Description |
---|---|---|---|
JIRA_URL |
True | None | The base URL for JIRA API |
JIRA_API_KEY |
True | None | The API key created for accessing JIRA |
JIRA_USER |
True | None | Email of the JIRA user the API key belongs to |
CLICKUP_API_KEY |
True | None | The API key created for accessing ClickUp |
LOGGING_FORMAT |
False | %(asctime)s %(name)-12s:" " %(levelname)-" "8s - " "%(message)s | The format of the application logs |
LOGGING_LEVEL |
False | INFO | The logging level of the application |
JIRACLICKUPLINK |
False | None | If True, will create link from Jira to ClickUp |
STATUSMAP |
False | None | Filename/path of status map file. Format: clickupvalue=jiravalue, per line |
TYPEMAP |
False | None | Filename/path of type map file. Format: clickupvalue=jiravalue, per line |