├── .dockerignore ├── .eslintrc.js ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── Dockerfile.medium ├── Dockerfile.resonator ├── README.md ├── apps ├── medium │ ├── .eslintrc.js │ ├── .github │ │ └── workflows │ │ │ └── pr.yml │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── __mocks__ │ │ └── styleMock.js │ ├── __tests__ │ │ ├── page.specs.js │ │ └── page.specs.tsx │ ├── components.json │ ├── jest.config.js │ ├── jest.setup.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── app │ │ │ ├── icons │ │ │ │ ├── muelsyse@4x.jpg │ │ │ │ ├── mumu_192.jpg │ │ │ │ ├── mumu_384.jpg │ │ │ │ └── mumu_512.jpg │ │ │ └── manifest.json │ │ └── character │ │ │ ├── arisu.webp │ │ │ └── muelsyse.webp │ ├── src │ │ ├── app │ │ │ ├── (user) │ │ │ │ ├── chat │ │ │ │ │ ├── [id] │ │ │ │ │ │ ├── clean-up.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── editor │ │ │ │ │ ├── [id] │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── store.ts │ │ │ │ │ ├── new │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── profile │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── og │ │ │ │ └── route.tsx │ │ │ ├── page.tsx │ │ │ ├── providers.tsx │ │ │ ├── signin │ │ │ │ └── page.tsx │ │ │ └── transition.tsx │ │ ├── components │ │ │ ├── design-system │ │ │ │ ├── ui │ │ │ │ │ └── button.tsx │ │ │ │ └── utils.ts │ │ │ ├── index.ts │ │ │ ├── modules │ │ │ │ ├── chat │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── chat.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── composer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── conversation │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── store.ts │ │ │ │ └── index.ts │ │ │ └── shared │ │ │ │ ├── index.ts │ │ │ │ └── textarea │ │ │ │ ├── index.tsx │ │ │ │ └── textarea.css │ │ ├── layouts │ │ │ └── index.ts │ │ ├── services │ │ │ ├── easing.ts │ │ │ ├── eden.ts │ │ │ ├── flags.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ └── useScreenSize.ts │ │ │ └── index.ts │ │ ├── shadcn.css │ │ ├── stores │ │ │ ├── editor.ts │ │ │ ├── index.ts │ │ │ ├── jotai.ts │ │ │ ├── rooms.ts │ │ │ └── user.ts │ │ └── styles │ │ │ └── global.css │ ├── tools │ │ └── withPwa.js │ ├── trace │ │ ├── trace.json │ │ └── types.json │ └── tsconfig.json └── resonator │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── drizzle │ └── migrations │ │ ├── 0000_burly_sabra.sql │ │ └── meta │ │ ├── 0000_snapshot.json │ │ └── _journal.json │ ├── dumpfile.sql │ ├── manual_migration.sql │ ├── package.docker.json │ ├── package.json │ ├── src │ ├── controllers │ │ ├── auth │ │ │ └── index.ts │ │ ├── character │ │ │ └── index.ts │ │ ├── editor │ │ │ ├── character │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── index.ts │ └── libs │ │ ├── ai │ │ ├── characters │ │ │ ├── arisu.ts │ │ │ ├── dorothy.ts │ │ │ └── muelsyse.ts │ │ ├── cloudflare.ts │ │ ├── gemini.ts │ │ ├── index.ts │ │ ├── instruction.ts │ │ └── types.ts │ │ ├── auth │ │ └── index.ts │ │ ├── database │ │ ├── connection.ts │ │ ├── index.ts │ │ ├── migrate.ts │ │ ├── repository │ │ │ ├── base.ts │ │ │ ├── editor.ts │ │ │ ├── index.ts │ │ │ └── query.ts │ │ └── table.ts │ │ ├── env.ts │ │ ├── index.ts │ │ ├── polyfills │ │ ├── decoder-stream.ts │ │ └── index.ts │ │ ├── storage │ │ └── index.ts │ │ └── tracing │ │ └── index.ts │ ├── trace │ ├── trace.json │ └── types.json │ └── tsconfig.json ├── bun.lock ├── package.json ├── packages ├── eslint-config │ ├── README.md │ ├── library.js │ ├── next.js │ ├── package.json │ └── react-internal.js ├── typescript-config │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json └── ui │ ├── .eslintrc.js │ ├── package.json │ ├── src │ ├── button.tsx │ ├── card.tsx │ ├── code.tsx │ └── index.ts │ ├── tsconfig.json │ ├── turbo.json │ └── turbo │ └── generators │ ├── config.js │ ├── config.ts │ └── templates │ └── component.hbs ├── trace ├── trace.json └── types.json ├── tsconfig.json └── turbo.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile.medium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/Dockerfile.medium -------------------------------------------------------------------------------- /Dockerfile.resonator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/Dockerfile.resonator -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/README.md -------------------------------------------------------------------------------- /apps/medium/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/.eslintrc.js -------------------------------------------------------------------------------- /apps/medium/.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/.github/workflows/pr.yml -------------------------------------------------------------------------------- /apps/medium/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | out 4 | .DS_Store 5 | yarn-error.log 6 | .vscode 7 | -------------------------------------------------------------------------------- /apps/medium/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/.prettierrc -------------------------------------------------------------------------------- /apps/medium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/README.md -------------------------------------------------------------------------------- /apps/medium/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | // ? For mocking styles file 2 | module.exports = {} -------------------------------------------------------------------------------- /apps/medium/__tests__/page.specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/__tests__/page.specs.js -------------------------------------------------------------------------------- /apps/medium/__tests__/page.specs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/__tests__/page.specs.tsx -------------------------------------------------------------------------------- /apps/medium/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/components.json -------------------------------------------------------------------------------- /apps/medium/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/jest.config.js -------------------------------------------------------------------------------- /apps/medium/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/jest.setup.js -------------------------------------------------------------------------------- /apps/medium/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/next-env.d.ts -------------------------------------------------------------------------------- /apps/medium/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/next.config.js -------------------------------------------------------------------------------- /apps/medium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/package.json -------------------------------------------------------------------------------- /apps/medium/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/postcss.config.js -------------------------------------------------------------------------------- /apps/medium/public/app/icons/muelsyse@4x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/app/icons/muelsyse@4x.jpg -------------------------------------------------------------------------------- /apps/medium/public/app/icons/mumu_192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/app/icons/mumu_192.jpg -------------------------------------------------------------------------------- /apps/medium/public/app/icons/mumu_384.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/app/icons/mumu_384.jpg -------------------------------------------------------------------------------- /apps/medium/public/app/icons/mumu_512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/app/icons/mumu_512.jpg -------------------------------------------------------------------------------- /apps/medium/public/app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/app/manifest.json -------------------------------------------------------------------------------- /apps/medium/public/character/arisu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/character/arisu.webp -------------------------------------------------------------------------------- /apps/medium/public/character/muelsyse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/public/character/muelsyse.webp -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/chat/[id]/clean-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/chat/[id]/clean-up.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/chat/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/chat/[id]/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/chat/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/editor/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/editor/[id]/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/editor/[id]/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/editor/[id]/store.ts -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/editor/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/editor/new/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/editor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/editor/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/layout.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/(user)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/(user)/profile/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/og/route.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/providers.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/signin/page.tsx -------------------------------------------------------------------------------- /apps/medium/src/app/transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/app/transition.tsx -------------------------------------------------------------------------------- /apps/medium/src/components/design-system/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/design-system/ui/button.tsx -------------------------------------------------------------------------------- /apps/medium/src/components/design-system/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/design-system/utils.ts -------------------------------------------------------------------------------- /apps/medium/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/index.ts -------------------------------------------------------------------------------- /apps/medium/src/components/modules/chat/chat/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/chat/chat/chat.css -------------------------------------------------------------------------------- /apps/medium/src/components/modules/chat/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/chat/chat/index.tsx -------------------------------------------------------------------------------- /apps/medium/src/components/modules/chat/composer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/chat/composer/index.tsx -------------------------------------------------------------------------------- /apps/medium/src/components/modules/chat/conversation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/chat/conversation/index.tsx -------------------------------------------------------------------------------- /apps/medium/src/components/modules/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/chat/index.ts -------------------------------------------------------------------------------- /apps/medium/src/components/modules/chat/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/chat/store.ts -------------------------------------------------------------------------------- /apps/medium/src/components/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/modules/index.ts -------------------------------------------------------------------------------- /apps/medium/src/components/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/shared/index.ts -------------------------------------------------------------------------------- /apps/medium/src/components/shared/textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/shared/textarea/index.tsx -------------------------------------------------------------------------------- /apps/medium/src/components/shared/textarea/textarea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/components/shared/textarea/textarea.css -------------------------------------------------------------------------------- /apps/medium/src/layouts/index.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /apps/medium/src/services/easing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/services/easing.ts -------------------------------------------------------------------------------- /apps/medium/src/services/eden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/services/eden.ts -------------------------------------------------------------------------------- /apps/medium/src/services/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/services/flags.ts -------------------------------------------------------------------------------- /apps/medium/src/services/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/services/hooks/index.ts -------------------------------------------------------------------------------- /apps/medium/src/services/hooks/useScreenSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/services/hooks/useScreenSize.ts -------------------------------------------------------------------------------- /apps/medium/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/services/index.ts -------------------------------------------------------------------------------- /apps/medium/src/shadcn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/shadcn.css -------------------------------------------------------------------------------- /apps/medium/src/stores/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/stores/editor.ts -------------------------------------------------------------------------------- /apps/medium/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/stores/index.ts -------------------------------------------------------------------------------- /apps/medium/src/stores/jotai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/stores/jotai.ts -------------------------------------------------------------------------------- /apps/medium/src/stores/rooms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/stores/rooms.ts -------------------------------------------------------------------------------- /apps/medium/src/stores/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/stores/user.ts -------------------------------------------------------------------------------- /apps/medium/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/src/styles/global.css -------------------------------------------------------------------------------- /apps/medium/tools/withPwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/tools/withPwa.js -------------------------------------------------------------------------------- /apps/medium/trace/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/trace/trace.json -------------------------------------------------------------------------------- /apps/medium/trace/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/trace/types.json -------------------------------------------------------------------------------- /apps/medium/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/medium/tsconfig.json -------------------------------------------------------------------------------- /apps/resonator/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/.env.example -------------------------------------------------------------------------------- /apps/resonator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/.gitignore -------------------------------------------------------------------------------- /apps/resonator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/README.md -------------------------------------------------------------------------------- /apps/resonator/drizzle/migrations/0000_burly_sabra.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/drizzle/migrations/0000_burly_sabra.sql -------------------------------------------------------------------------------- /apps/resonator/drizzle/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/drizzle/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /apps/resonator/drizzle/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/drizzle/migrations/meta/_journal.json -------------------------------------------------------------------------------- /apps/resonator/dumpfile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/dumpfile.sql -------------------------------------------------------------------------------- /apps/resonator/manual_migration.sql: -------------------------------------------------------------------------------- 1 | ---> Manual Migration 2 | CREATE VIRTUAL TABLE character_fts USING fts5(name); 3 | -------------------------------------------------------------------------------- /apps/resonator/package.docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/package.docker.json -------------------------------------------------------------------------------- /apps/resonator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/package.json -------------------------------------------------------------------------------- /apps/resonator/src/controllers/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/controllers/auth/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/controllers/character/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/controllers/character/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/controllers/editor/character/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/controllers/editor/character/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/controllers/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/controllers/editor/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/controllers/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/characters/arisu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/characters/arisu.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/characters/dorothy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/characters/dorothy.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/characters/muelsyse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/characters/muelsyse.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/cloudflare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/cloudflare.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/gemini.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/instruction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/instruction.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/ai/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/ai/types.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/auth/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/connection.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/migrate.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/repository/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/repository/base.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/repository/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/repository/editor.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/repository/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/repository/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/repository/query.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/database/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/database/table.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/env.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/polyfills/decoder-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/polyfills/decoder-stream.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/polyfills/index.ts: -------------------------------------------------------------------------------- 1 | export * from './decoder-stream' 2 | -------------------------------------------------------------------------------- /apps/resonator/src/libs/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/storage/index.ts -------------------------------------------------------------------------------- /apps/resonator/src/libs/tracing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/src/libs/tracing/index.ts -------------------------------------------------------------------------------- /apps/resonator/trace/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/trace/trace.json -------------------------------------------------------------------------------- /apps/resonator/trace/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/trace/types.json -------------------------------------------------------------------------------- /apps/resonator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/apps/resonator/tsconfig.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/package.json -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/eslint-config/library.js -------------------------------------------------------------------------------- /packages/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/eslint-config/next.js -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/eslint-config/react-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/eslint-config/react-internal.js -------------------------------------------------------------------------------- /packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/typescript-config/base.json -------------------------------------------------------------------------------- /packages/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/typescript-config/nextjs.json -------------------------------------------------------------------------------- /packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/typescript-config/package.json -------------------------------------------------------------------------------- /packages/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/typescript-config/react-library.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/src/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/src/card.tsx -------------------------------------------------------------------------------- /packages/ui/src/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/src/code.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/turbo.json -------------------------------------------------------------------------------- /packages/ui/turbo/generators/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/turbo/generators/config.js -------------------------------------------------------------------------------- /packages/ui/turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/turbo/generators/config.ts -------------------------------------------------------------------------------- /packages/ui/turbo/generators/templates/component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/packages/ui/turbo/generators/templates/component.hbs -------------------------------------------------------------------------------- /trace/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/trace/trace.json -------------------------------------------------------------------------------- /trace/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/trace/types.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/dorothy/HEAD/turbo.json --------------------------------------------------------------------------------