This file contains hidden or 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
| // Run: node immich-fill.ts (node v24 or above) | |
| const url = "https://immich-url-here/api/"; | |
| const key = "PASTE API KEY HERE"; | |
| // Paste path to VCF file here (generate it with Apple Contacts -> export) | |
| const vcfPath = "/Users/tommy/Desktop/contacts.vcf"; | |
| import { readFile } from "node:fs/promises"; |
OlderNewer