mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-20 01:21:55 +03:00
57ee462ca6
* Integrate import to workspace initialization Signed-off-by: Anna Khismatullina <anna.khismatullina@gmail.com> * Support importing drawing along with attachments Signed-off-by: Anna Khismatullina <anna.khismatullina@gmail.com> * Put init scripts into workspace container Signed-off-by: Anna Khismatullina <anna.khismatullina@gmail.com> --------- Signed-off-by: Anna Khismatullina <anna.khismatullina@gmail.com> |
||
---|---|---|
.. | ||
README.md |
Import from ClickUp Guide
Export Data from ClickUp
- Follow ClickUp's official guide to export your tasks as CSV
- Save the CSV file to your local machine
Run Import Tool
- Place your ClickUp CSV file in a directory (e.g., /path/to/export)
- Run the import tool using Docker:
docker run \
-e FRONT_URL="https://huly.app" \
-v /path/to/export:/data \
hardcoreeng/import-tool:latest \
-- bundle.js import-clickup-tasks /data/tasks.csv \
--user your.email@company.com \
--password yourpassword \
--workspace workspace-id
User Mapping
- Users must be created in the platform before import (Under Contacts/Employee)
- ClickUp assignees are mapped to platform users by full name (e.g., "Jane Doe")
- Comments authors are mapped by email
- If user is not found:
- Task will be imported without assignee
- Original assignee name will be added as a comment: ClickUp assignee: John Smith
Limitations
- Checklist items are imported as unchecked since ClickUp export doesn't include checkbox states
- Failed attachment downloads are skipped with warning messages (Original attachment URL is added as a comment)
- Users import is not supported yet