17 lines
577 B
Plaintext
17 lines
577 B
Plaintext
This is an application to import tasks to Tududi from Todoist.
|
|
|
|
To use it, you need to set up a .env file with your Todoist API token and Tududi API key. Here is an example of what the .env file should look like:
|
|
```
|
|
TODOIST_TOKEN=your_todoist_api_token
|
|
TUDUDI_BASE_URL=https://your_tududi_instance_url
|
|
TUDUDI_API_KEY=your_tududi_api_key
|
|
DRY_RUN=false
|
|
CLEAN_FIRST=True
|
|
USE_AREAS=False
|
|
SKIP_COMPLETED_TASKS=True
|
|
REQUEST_SLEEP=0.10
|
|
```
|
|
|
|
Make sure to replace `your_todoist_api_token`, `https://your_tududi_instance_url`, and `your_tududi_api_key` with your actual credentials.
|
|
|