A super-simple text editor that gives you 10 autocomplete suggestions at a time.
- Copy the
.env.sample
file to create your.env.local
:
cp .env.sample .env.local
- Edit
.env.local
and replace the placeholder API keys with your actual keys:OPENAI_API_KEY
: Your OpenAI API keyANTHROPIC_API_KEY
: Your Anthropic API key
- Install dependencies:
pnpm i
- Run the Next.js development server (at http://localhost:3000):
pnpm run dev
- Run the Electron development environment:
pnpm run electron-dev
- Build the Electron app:
pnpm run electron-build