├── .env.example ├── .gitignore ├── README.md ├── index.ts ├── license ├── package.json ├── public └── screenshot.png ├── tsconfig.json └── utils └── index.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env 3 | /dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/index.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/package.json -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/ai-brainstore/HEAD/utils/index.ts --------------------------------------------------------------------------------