Connect Obsidian, Apple Notes, or Notion — your notes sync into one place.
Before setting up any sync source, make sure you have the basics ready:
git clone git@github.com:Angela-is-here/angiekim.github.io.git
cd angiekim.github.io npm install .env file in the project root:
DATABASE_URL=your_neon_database_url
WRITE_API_KEY=your_api_key
PUBLIC_SITE_URL=https://notes.iri-ai.com npm run dev
Then open http://localhost:4321 in your browser.
Once that's working, pick a sync source below to connect your notes.
Live sync from your vault. Notes push automatically when you save.
npm run setupcd obsidian-plugin
npm install && npm run build main.js and manifest.json to.obsidian/plugins/studio-graph-sync/Sync notes from Apple Notes on macOS via a single command.
sources: {
appleNotes: { enabled: true }
} cd sync-scripts && npm installnpm run sync apple-notes # sync all
npm run sync apple-notes --dry-run # preview Pull pages from a Notion database into your garden.
sources: {
notion: {
enabled: true,
token: 'secret_...',
databaseId: '...',
}
} npm run sync notion # sync all
npm run sync notion --dry-run # preview Run a single command to sync all enabled sources.
npm run sync # all enabled sources
npm run sync --dry-run # preview first npx tsx cli/index.ts sync
npx tsx cli/index.ts sync obsidian
npx tsx cli/index.ts detect