├── .gitignore ├── .nvmrc ├── CLAUDE.md ├── README.md ├── biome.json ├── content ├── blog │ ├── 20k-github-stars-in-2-years.mdx │ ├── best-practices-to-write-tag.mdx │ ├── choosing-a-storage-for-your-resource.mdx │ ├── choosing-between-sqlite-and-mysql.mdx │ ├── everythings-down-why-self-hosting-still-matters.mdx │ ├── syncing-and-managing-data-with-github.mdx │ └── syncing-data-with-icloud.mdx ├── changelog │ ├── 0-0-1.mdx │ ├── 0-1-0.mdx │ ├── 0-1-1.mdx │ ├── 0-1-2.mdx │ ├── 0-1-3.mdx │ ├── 0-10-0.mdx │ ├── 0-10-1.mdx │ ├── 0-10-2.mdx │ ├── 0-10-3.mdx │ ├── 0-11-1.mdx │ ├── 0-11-2.mdx │ ├── 0-12-0.mdx │ ├── 0-12-1.mdx │ ├── 0-12-2.mdx │ ├── 0-13-0.mdx │ ├── 0-13-1.mdx │ ├── 0-13-2.mdx │ ├── 0-14-0.mdx │ ├── 0-14-1.mdx │ ├── 0-14-2.mdx │ ├── 0-14-3.mdx │ ├── 0-14-4.mdx │ ├── 0-15-0.mdx │ ├── 0-15-1.mdx │ ├── 0-15-2.mdx │ ├── 0-16-0.mdx │ ├── 0-16-1.mdx │ ├── 0-17-0.mdx │ ├── 0-17-1.mdx │ ├── 0-18-0.mdx │ ├── 0-18-1.mdx │ ├── 0-18-2.mdx │ ├── 0-19-0.mdx │ ├── 0-19-1.mdx │ ├── 0-2-0.mdx │ ├── 0-2-1.mdx │ ├── 0-2-2.mdx │ ├── 0-20-0.mdx │ ├── 0-20-1.mdx │ ├── 0-21-0.mdx │ ├── 0-22-0.mdx │ ├── 0-22-1.mdx │ ├── 0-22-2.mdx │ ├── 0-22-3.mdx │ ├── 0-22-4.mdx │ ├── 0-22-5.mdx │ ├── 0-23-0.mdx │ ├── 0-23-1.mdx │ ├── 0-24-0.mdx │ ├── 0-24-1.mdx │ ├── 0-24-2.mdx │ ├── 0-24-3.mdx │ ├── 0-24-4.mdx │ ├── 0-25-0.mdx │ ├── 0-25-1.mdx │ ├── 0-25-2.mdx │ ├── 0-25-3.mdx │ ├── 0-3-0.mdx │ ├── 0-3-1.mdx │ ├── 0-4-0.mdx │ ├── 0-4-1.mdx │ ├── 0-4-2.mdx │ ├── 0-4-3.mdx │ ├── 0-4-4.mdx │ ├── 0-4-5.mdx │ ├── 0-5-0.mdx │ ├── 0-6-0.mdx │ ├── 0-6-1.mdx │ ├── 0-7-0.mdx │ ├── 0-7-1.mdx │ ├── 0-7-2.mdx │ ├── 0-7-3.mdx │ ├── 0-8-0.mdx │ ├── 0-8-1.mdx │ ├── 0-8-2.mdx │ ├── 0-8-3.mdx │ ├── 0-9-0.mdx │ └── 0-9-1.mdx └── docs │ ├── api │ ├── activityservice │ │ ├── GetActivity.mdx │ │ ├── ListActivities.mdx │ │ └── meta.json │ ├── attachmentservice │ │ ├── CreateAttachment.mdx │ │ ├── DeleteAttachment.mdx │ │ ├── GetAttachment.mdx │ │ ├── GetAttachmentBinary.mdx │ │ ├── ListAttachments.mdx │ │ ├── UpdateAttachment.mdx │ │ └── meta.json │ ├── authservice │ │ ├── CreateSession.mdx │ │ ├── DeleteSession.mdx │ │ ├── GetCurrentSession.mdx │ │ └── meta.json │ ├── identityproviderservice │ │ ├── CreateIdentityProvider.mdx │ │ ├── DeleteIdentityProvider.mdx │ │ ├── GetIdentityProvider.mdx │ │ ├── ListIdentityProviders.mdx │ │ ├── UpdateIdentityProvider.mdx │ │ └── meta.json │ ├── index.mdx │ ├── instanceservice │ │ ├── GetInstanceProfile.mdx │ │ ├── GetInstanceSetting.mdx │ │ ├── UpdateInstanceSetting.mdx │ │ └── meta.json │ ├── memoservice │ │ ├── CreateMemo.mdx │ │ ├── CreateMemoComment.mdx │ │ ├── DeleteMemo.mdx │ │ ├── DeleteMemoReaction.mdx │ │ ├── GetMemo.mdx │ │ ├── ListMemoAttachments.mdx │ │ ├── ListMemoComments.mdx │ │ ├── ListMemoReactions.mdx │ │ ├── ListMemoRelations.mdx │ │ ├── ListMemos.mdx │ │ ├── SetMemoAttachments.mdx │ │ ├── SetMemoRelations.mdx │ │ ├── UpdateMemo.mdx │ │ ├── UpsertMemoReaction.mdx │ │ └── meta.json │ ├── meta.json │ ├── shortcutservice │ │ ├── CreateShortcut.mdx │ │ ├── DeleteShortcut.mdx │ │ ├── GetShortcut.mdx │ │ ├── ListShortcuts.mdx │ │ ├── UpdateShortcut.mdx │ │ └── meta.json │ └── userservice │ │ ├── CreateUser.mdx │ │ ├── CreateUserAccessToken.mdx │ │ ├── CreateUserWebhook.mdx │ │ ├── DeleteUser.mdx │ │ ├── DeleteUserAccessToken.mdx │ │ ├── DeleteUserNotification.mdx │ │ ├── DeleteUserWebhook.mdx │ │ ├── GetUser.mdx │ │ ├── GetUserAvatar.mdx │ │ ├── GetUserSetting.mdx │ │ ├── GetUserStats.mdx │ │ ├── ListAllUserStats.mdx │ │ ├── ListUserAccessTokens.mdx │ │ ├── ListUserNotifications.mdx │ │ ├── ListUserSessions.mdx │ │ ├── ListUserSettings.mdx │ │ ├── ListUserWebhooks.mdx │ │ ├── ListUsers.mdx │ │ ├── RevokeUserSession.mdx │ │ ├── UpdateUser.mdx │ │ ├── UpdateUserNotification.mdx │ │ ├── UpdateUserSetting.mdx │ │ ├── UpdateUserWebhook.mdx │ │ └── meta.json │ ├── configuration │ ├── authentication.mdx │ ├── database.mdx │ ├── index.mdx │ ├── meta.json │ ├── security.mdx │ └── storage.mdx │ ├── faq.mdx │ ├── guides │ ├── authentication.mdx │ ├── content-syntax.mdx │ ├── getting-started.mdx │ ├── index.mdx │ ├── meta.json │ ├── shortcuts.mdx │ └── tags.mdx │ ├── index.mdx │ ├── installation │ ├── binary.mdx │ ├── development.mdx │ ├── docker.mdx │ ├── index.mdx │ ├── kubernetes.mdx │ └── meta.json │ ├── integrations │ ├── index.mdx │ ├── meta.json │ ├── rss.mdx │ ├── telegram-bot.mdx │ └── webhooks.mdx │ └── meta.json ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── content │ ├── blog │ │ ├── 20k-github-stars-in-2-years │ │ │ ├── banner.png │ │ │ ├── contribution.png │ │ │ └── star-history.png │ │ ├── choosing-between-sqlite-and-mysql │ │ │ └── banner.png │ │ ├── everythings-down-why-self-hosting-still-matters │ │ │ ├── elon-twitter-about-amazon-aws-ceo.png │ │ │ └── the-entire-internet.jpg │ │ ├── syncing-and-managing-data-with-github │ │ │ └── banner.png │ │ └── syncing-data-with-icloud │ │ │ ├── banner.png │ │ │ └── finder.png │ ├── changelog │ │ └── 0-22-5-settings.png │ └── docs │ │ ├── advanced-settings │ │ ├── authelia │ │ │ └── memos-authelia-config.png │ │ ├── authentik │ │ │ └── memos-authentik-config.png │ │ ├── cloudflare-r2 │ │ │ └── r2-storage-config.png │ │ ├── keycloak │ │ │ ├── keycloak-client-config.png │ │ │ └── memos-keycloak-config.png │ │ ├── local-storage │ │ │ ├── edit-local-storage-path.png │ │ │ ├── local-storage-edit.png │ │ │ └── local-storage-select.png │ │ └── webhook │ │ │ └── webhook-setting-section.png │ │ ├── faq │ │ └── change-created-time-of-memo.png │ │ └── security │ │ └── access-tokens │ │ ├── create.png │ │ └── setting.png ├── demo-dark.png ├── demo.png ├── favicon.ico ├── full-logo-landscape.png ├── full-logo.png ├── logo-rounded.png ├── logo.png └── robots.txt ├── scripts └── generate-openapi.mjs ├── source.config.ts ├── src ├── app │ ├── (home) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── api │ │ └── search │ │ │ └── route.ts │ ├── apple-icon.png │ ├── blog │ │ ├── [slug] │ │ │ └── page.tsx │ │ ├── feed.xml │ │ │ └── route.ts │ │ └── page.tsx │ ├── brand │ │ └── page.tsx │ ├── changelog │ │ ├── [slug] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── docs │ │ ├── [...slug] │ │ │ └── page.tsx │ │ ├── layout.client.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── features │ │ ├── [slug] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── global.css │ ├── icon.png │ ├── layout.config.tsx │ ├── layout.tsx │ ├── pricing │ │ └── page.tsx │ ├── privacy │ │ └── page.tsx │ ├── scratchpad │ │ ├── layout.tsx │ │ └── page.tsx │ ├── sitemap.ts │ └── sponsors │ │ └── page.tsx ├── components │ ├── ads-section.tsx │ ├── changelog-footer.tsx │ ├── changelog-header.tsx │ ├── docker-command.tsx │ ├── docs-carbon-ad-card.tsx │ ├── docs-sponsor-card.tsx │ ├── feature-card.tsx │ ├── footer.tsx │ ├── hero-section.tsx │ ├── scratch │ │ ├── file-item.tsx │ │ ├── instance-setup-form.tsx │ │ ├── text-item.tsx │ │ ├── theme-provider.tsx │ │ └── workspace.tsx │ ├── sponsors-section.tsx │ ├── stats-card.tsx │ ├── toc-footer.tsx │ └── ui │ │ ├── callout.tsx │ │ ├── card.tsx │ │ └── code-block.tsx ├── hooks │ └── use-media-query.ts ├── lib │ ├── features.ts │ ├── scratch │ │ ├── api.ts │ │ ├── encryption.ts │ │ ├── indexeddb.ts │ │ ├── storage.ts │ │ └── types.ts │ ├── source.ts │ ├── sponsors.ts │ ├── toc-config.tsx │ └── utils.ts └── mdx-components.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/biome.json -------------------------------------------------------------------------------- /content/blog/20k-github-stars-in-2-years.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/20k-github-stars-in-2-years.mdx -------------------------------------------------------------------------------- /content/blog/best-practices-to-write-tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/best-practices-to-write-tag.mdx -------------------------------------------------------------------------------- /content/blog/choosing-a-storage-for-your-resource.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/choosing-a-storage-for-your-resource.mdx -------------------------------------------------------------------------------- /content/blog/choosing-between-sqlite-and-mysql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/choosing-between-sqlite-and-mysql.mdx -------------------------------------------------------------------------------- /content/blog/everythings-down-why-self-hosting-still-matters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/everythings-down-why-self-hosting-still-matters.mdx -------------------------------------------------------------------------------- /content/blog/syncing-and-managing-data-with-github.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/syncing-and-managing-data-with-github.mdx -------------------------------------------------------------------------------- /content/blog/syncing-data-with-icloud.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/blog/syncing-data-with-icloud.mdx -------------------------------------------------------------------------------- /content/changelog/0-0-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-0-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-1-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-1-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-1-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-1-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-1-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-1-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-1-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-1-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-10-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-10-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-10-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-10-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-10-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-10-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-10-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-10-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-11-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-11-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-11-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-11-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-12-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-12-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-12-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-12-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-12-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-12-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-13-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-13-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-13-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-13-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-13-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-13-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-14-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-14-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-14-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-14-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-14-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-14-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-14-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-14-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-14-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-14-4.mdx -------------------------------------------------------------------------------- /content/changelog/0-15-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-15-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-15-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-15-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-15-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-15-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-16-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-16-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-16-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-16-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-17-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-17-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-17-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-17-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-18-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-18-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-18-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-18-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-18-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-18-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-19-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-19-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-19-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-19-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-2-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-2-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-2-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-2-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-2-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-2-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-20-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-20-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-20-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-20-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-21-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-21-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-22-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-22-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-22-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-22-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-22-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-22-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-22-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-22-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-22-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-22-4.mdx -------------------------------------------------------------------------------- /content/changelog/0-22-5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-22-5.mdx -------------------------------------------------------------------------------- /content/changelog/0-23-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-23-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-23-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-23-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-24-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-24-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-24-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-24-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-24-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-24-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-24-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-24-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-24-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-24-4.mdx -------------------------------------------------------------------------------- /content/changelog/0-25-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-25-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-25-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-25-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-25-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-25-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-25-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-25-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-3-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-3-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-3-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-3-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-4-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-4-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-4-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-4-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-4-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-4-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-4-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-4-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-4-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-4-4.mdx -------------------------------------------------------------------------------- /content/changelog/0-4-5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-4-5.mdx -------------------------------------------------------------------------------- /content/changelog/0-5-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-5-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-6-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-6-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-6-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-6-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-7-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-7-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-7-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-7-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-7-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-7-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-7-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-7-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-8-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-8-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-8-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-8-1.mdx -------------------------------------------------------------------------------- /content/changelog/0-8-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-8-2.mdx -------------------------------------------------------------------------------- /content/changelog/0-8-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-8-3.mdx -------------------------------------------------------------------------------- /content/changelog/0-9-0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-9-0.mdx -------------------------------------------------------------------------------- /content/changelog/0-9-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/changelog/0-9-1.mdx -------------------------------------------------------------------------------- /content/docs/api/activityservice/GetActivity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/activityservice/GetActivity.mdx -------------------------------------------------------------------------------- /content/docs/api/activityservice/ListActivities.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/activityservice/ListActivities.mdx -------------------------------------------------------------------------------- /content/docs/api/activityservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/activityservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/CreateAttachment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/CreateAttachment.mdx -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/DeleteAttachment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/DeleteAttachment.mdx -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/GetAttachment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/GetAttachment.mdx -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/GetAttachmentBinary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/GetAttachmentBinary.mdx -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/ListAttachments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/ListAttachments.mdx -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/UpdateAttachment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/UpdateAttachment.mdx -------------------------------------------------------------------------------- /content/docs/api/attachmentservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/attachmentservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/authservice/CreateSession.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/authservice/CreateSession.mdx -------------------------------------------------------------------------------- /content/docs/api/authservice/DeleteSession.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/authservice/DeleteSession.mdx -------------------------------------------------------------------------------- /content/docs/api/authservice/GetCurrentSession.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/authservice/GetCurrentSession.mdx -------------------------------------------------------------------------------- /content/docs/api/authservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/authservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/identityproviderservice/CreateIdentityProvider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/identityproviderservice/CreateIdentityProvider.mdx -------------------------------------------------------------------------------- /content/docs/api/identityproviderservice/DeleteIdentityProvider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/identityproviderservice/DeleteIdentityProvider.mdx -------------------------------------------------------------------------------- /content/docs/api/identityproviderservice/GetIdentityProvider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/identityproviderservice/GetIdentityProvider.mdx -------------------------------------------------------------------------------- /content/docs/api/identityproviderservice/ListIdentityProviders.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/identityproviderservice/ListIdentityProviders.mdx -------------------------------------------------------------------------------- /content/docs/api/identityproviderservice/UpdateIdentityProvider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/identityproviderservice/UpdateIdentityProvider.mdx -------------------------------------------------------------------------------- /content/docs/api/identityproviderservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/identityproviderservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/index.mdx -------------------------------------------------------------------------------- /content/docs/api/instanceservice/GetInstanceProfile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/instanceservice/GetInstanceProfile.mdx -------------------------------------------------------------------------------- /content/docs/api/instanceservice/GetInstanceSetting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/instanceservice/GetInstanceSetting.mdx -------------------------------------------------------------------------------- /content/docs/api/instanceservice/UpdateInstanceSetting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/instanceservice/UpdateInstanceSetting.mdx -------------------------------------------------------------------------------- /content/docs/api/instanceservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/instanceservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/memoservice/CreateMemo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/CreateMemo.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/CreateMemoComment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/CreateMemoComment.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/DeleteMemo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/DeleteMemo.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/DeleteMemoReaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/DeleteMemoReaction.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/GetMemo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/GetMemo.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/ListMemoAttachments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/ListMemoAttachments.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/ListMemoComments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/ListMemoComments.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/ListMemoReactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/ListMemoReactions.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/ListMemoRelations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/ListMemoRelations.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/ListMemos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/ListMemos.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/SetMemoAttachments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/SetMemoAttachments.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/SetMemoRelations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/SetMemoRelations.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/UpdateMemo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/UpdateMemo.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/UpsertMemoReaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/UpsertMemoReaction.mdx -------------------------------------------------------------------------------- /content/docs/api/memoservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/memoservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/meta.json -------------------------------------------------------------------------------- /content/docs/api/shortcutservice/CreateShortcut.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/shortcutservice/CreateShortcut.mdx -------------------------------------------------------------------------------- /content/docs/api/shortcutservice/DeleteShortcut.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/shortcutservice/DeleteShortcut.mdx -------------------------------------------------------------------------------- /content/docs/api/shortcutservice/GetShortcut.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/shortcutservice/GetShortcut.mdx -------------------------------------------------------------------------------- /content/docs/api/shortcutservice/ListShortcuts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/shortcutservice/ListShortcuts.mdx -------------------------------------------------------------------------------- /content/docs/api/shortcutservice/UpdateShortcut.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/shortcutservice/UpdateShortcut.mdx -------------------------------------------------------------------------------- /content/docs/api/shortcutservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/shortcutservice/meta.json -------------------------------------------------------------------------------- /content/docs/api/userservice/CreateUser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/CreateUser.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/CreateUserAccessToken.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/CreateUserAccessToken.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/CreateUserWebhook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/CreateUserWebhook.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/DeleteUser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/DeleteUser.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/DeleteUserAccessToken.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/DeleteUserAccessToken.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/DeleteUserNotification.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/DeleteUserNotification.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/DeleteUserWebhook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/DeleteUserWebhook.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/GetUser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/GetUser.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/GetUserAvatar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/GetUserAvatar.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/GetUserSetting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/GetUserSetting.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/GetUserStats.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/GetUserStats.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListAllUserStats.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListAllUserStats.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListUserAccessTokens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListUserAccessTokens.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListUserNotifications.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListUserNotifications.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListUserSessions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListUserSessions.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListUserSettings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListUserSettings.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListUserWebhooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListUserWebhooks.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/ListUsers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/ListUsers.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/RevokeUserSession.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/RevokeUserSession.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/UpdateUser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/UpdateUser.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/UpdateUserNotification.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/UpdateUserNotification.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/UpdateUserSetting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/UpdateUserSetting.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/UpdateUserWebhook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/UpdateUserWebhook.mdx -------------------------------------------------------------------------------- /content/docs/api/userservice/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/api/userservice/meta.json -------------------------------------------------------------------------------- /content/docs/configuration/authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/configuration/authentication.mdx -------------------------------------------------------------------------------- /content/docs/configuration/database.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/configuration/database.mdx -------------------------------------------------------------------------------- /content/docs/configuration/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/configuration/index.mdx -------------------------------------------------------------------------------- /content/docs/configuration/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/configuration/meta.json -------------------------------------------------------------------------------- /content/docs/configuration/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/configuration/security.mdx -------------------------------------------------------------------------------- /content/docs/configuration/storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/configuration/storage.mdx -------------------------------------------------------------------------------- /content/docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/faq.mdx -------------------------------------------------------------------------------- /content/docs/guides/authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/authentication.mdx -------------------------------------------------------------------------------- /content/docs/guides/content-syntax.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/content-syntax.mdx -------------------------------------------------------------------------------- /content/docs/guides/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/getting-started.mdx -------------------------------------------------------------------------------- /content/docs/guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/index.mdx -------------------------------------------------------------------------------- /content/docs/guides/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/meta.json -------------------------------------------------------------------------------- /content/docs/guides/shortcuts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/shortcuts.mdx -------------------------------------------------------------------------------- /content/docs/guides/tags.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/guides/tags.mdx -------------------------------------------------------------------------------- /content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/index.mdx -------------------------------------------------------------------------------- /content/docs/installation/binary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/installation/binary.mdx -------------------------------------------------------------------------------- /content/docs/installation/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/installation/development.mdx -------------------------------------------------------------------------------- /content/docs/installation/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/installation/docker.mdx -------------------------------------------------------------------------------- /content/docs/installation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/installation/index.mdx -------------------------------------------------------------------------------- /content/docs/installation/kubernetes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/installation/kubernetes.mdx -------------------------------------------------------------------------------- /content/docs/installation/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/installation/meta.json -------------------------------------------------------------------------------- /content/docs/integrations/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/integrations/index.mdx -------------------------------------------------------------------------------- /content/docs/integrations/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/integrations/meta.json -------------------------------------------------------------------------------- /content/docs/integrations/rss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/integrations/rss.mdx -------------------------------------------------------------------------------- /content/docs/integrations/telegram-bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/integrations/telegram-bot.mdx -------------------------------------------------------------------------------- /content/docs/integrations/webhooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/integrations/webhooks.mdx -------------------------------------------------------------------------------- /content/docs/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/content/docs/meta.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/content/blog/20k-github-stars-in-2-years/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/20k-github-stars-in-2-years/banner.png -------------------------------------------------------------------------------- /public/content/blog/20k-github-stars-in-2-years/contribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/20k-github-stars-in-2-years/contribution.png -------------------------------------------------------------------------------- /public/content/blog/20k-github-stars-in-2-years/star-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/20k-github-stars-in-2-years/star-history.png -------------------------------------------------------------------------------- /public/content/blog/choosing-between-sqlite-and-mysql/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/choosing-between-sqlite-and-mysql/banner.png -------------------------------------------------------------------------------- /public/content/blog/everythings-down-why-self-hosting-still-matters/elon-twitter-about-amazon-aws-ceo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/everythings-down-why-self-hosting-still-matters/elon-twitter-about-amazon-aws-ceo.png -------------------------------------------------------------------------------- /public/content/blog/everythings-down-why-self-hosting-still-matters/the-entire-internet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/everythings-down-why-self-hosting-still-matters/the-entire-internet.jpg -------------------------------------------------------------------------------- /public/content/blog/syncing-and-managing-data-with-github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/syncing-and-managing-data-with-github/banner.png -------------------------------------------------------------------------------- /public/content/blog/syncing-data-with-icloud/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/syncing-data-with-icloud/banner.png -------------------------------------------------------------------------------- /public/content/blog/syncing-data-with-icloud/finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/blog/syncing-data-with-icloud/finder.png -------------------------------------------------------------------------------- /public/content/changelog/0-22-5-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/changelog/0-22-5-settings.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/authelia/memos-authelia-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/authelia/memos-authelia-config.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/authentik/memos-authentik-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/authentik/memos-authentik-config.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/cloudflare-r2/r2-storage-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/cloudflare-r2/r2-storage-config.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/keycloak/keycloak-client-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/keycloak/keycloak-client-config.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/keycloak/memos-keycloak-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/keycloak/memos-keycloak-config.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/local-storage/edit-local-storage-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/local-storage/edit-local-storage-path.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/local-storage/local-storage-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/local-storage/local-storage-edit.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/local-storage/local-storage-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/local-storage/local-storage-select.png -------------------------------------------------------------------------------- /public/content/docs/advanced-settings/webhook/webhook-setting-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/advanced-settings/webhook/webhook-setting-section.png -------------------------------------------------------------------------------- /public/content/docs/faq/change-created-time-of-memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/faq/change-created-time-of-memo.png -------------------------------------------------------------------------------- /public/content/docs/security/access-tokens/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/security/access-tokens/create.png -------------------------------------------------------------------------------- /public/content/docs/security/access-tokens/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/content/docs/security/access-tokens/setting.png -------------------------------------------------------------------------------- /public/demo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/demo-dark.png -------------------------------------------------------------------------------- /public/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/demo.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/full-logo-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/full-logo-landscape.png -------------------------------------------------------------------------------- /public/full-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/full-logo.png -------------------------------------------------------------------------------- /public/logo-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/logo-rounded.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/generate-openapi.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/scripts/generate-openapi.mjs -------------------------------------------------------------------------------- /source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/source.config.ts -------------------------------------------------------------------------------- /src/app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/(home)/layout.tsx -------------------------------------------------------------------------------- /src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /src/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/api/search/route.ts -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/blog/feed.xml/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/blog/feed.xml/route.ts -------------------------------------------------------------------------------- /src/app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/blog/page.tsx -------------------------------------------------------------------------------- /src/app/brand/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/brand/page.tsx -------------------------------------------------------------------------------- /src/app/changelog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/changelog/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/changelog/page.tsx -------------------------------------------------------------------------------- /src/app/docs/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/docs/[...slug]/page.tsx -------------------------------------------------------------------------------- /src/app/docs/layout.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/docs/layout.client.tsx -------------------------------------------------------------------------------- /src/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/docs/layout.tsx -------------------------------------------------------------------------------- /src/app/docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/docs/page.tsx -------------------------------------------------------------------------------- /src/app/features/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/features/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/features/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/features/page.tsx -------------------------------------------------------------------------------- /src/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/global.css -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/layout.config.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/scratchpad/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/scratchpad/layout.tsx -------------------------------------------------------------------------------- /src/app/scratchpad/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/scratchpad/page.tsx -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/app/sponsors/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/app/sponsors/page.tsx -------------------------------------------------------------------------------- /src/components/ads-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/ads-section.tsx -------------------------------------------------------------------------------- /src/components/changelog-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/changelog-footer.tsx -------------------------------------------------------------------------------- /src/components/changelog-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/changelog-header.tsx -------------------------------------------------------------------------------- /src/components/docker-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/docker-command.tsx -------------------------------------------------------------------------------- /src/components/docs-carbon-ad-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/docs-carbon-ad-card.tsx -------------------------------------------------------------------------------- /src/components/docs-sponsor-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/docs-sponsor-card.tsx -------------------------------------------------------------------------------- /src/components/feature-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/feature-card.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/hero-section.tsx -------------------------------------------------------------------------------- /src/components/scratch/file-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/scratch/file-item.tsx -------------------------------------------------------------------------------- /src/components/scratch/instance-setup-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/scratch/instance-setup-form.tsx -------------------------------------------------------------------------------- /src/components/scratch/text-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/scratch/text-item.tsx -------------------------------------------------------------------------------- /src/components/scratch/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/scratch/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/scratch/workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/scratch/workspace.tsx -------------------------------------------------------------------------------- /src/components/sponsors-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/sponsors-section.tsx -------------------------------------------------------------------------------- /src/components/stats-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/stats-card.tsx -------------------------------------------------------------------------------- /src/components/toc-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/toc-footer.tsx -------------------------------------------------------------------------------- /src/components/ui/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/ui/callout.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/components/ui/code-block.tsx -------------------------------------------------------------------------------- /src/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/hooks/use-media-query.ts -------------------------------------------------------------------------------- /src/lib/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/features.ts -------------------------------------------------------------------------------- /src/lib/scratch/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/scratch/api.ts -------------------------------------------------------------------------------- /src/lib/scratch/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/scratch/encryption.ts -------------------------------------------------------------------------------- /src/lib/scratch/indexeddb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/scratch/indexeddb.ts -------------------------------------------------------------------------------- /src/lib/scratch/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/scratch/storage.ts -------------------------------------------------------------------------------- /src/lib/scratch/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/scratch/types.ts -------------------------------------------------------------------------------- /src/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/source.ts -------------------------------------------------------------------------------- /src/lib/sponsors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/sponsors.ts -------------------------------------------------------------------------------- /src/lib/toc-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/toc-config.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/src/mdx-components.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usememos/dotcom/HEAD/tsconfig.json --------------------------------------------------------------------------------