Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 696 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 696 Bytes

10x text editor

A super-simple text editor that gives you 10 autocomplete suggestions at a time.

Environment Setup

  1. Copy the .env.sample file to create your .env.local:
cp .env.sample .env.local
  1. Edit .env.local and replace the placeholder API keys with your actual keys:
    • OPENAI_API_KEY: Your OpenAI API key
    • ANTHROPIC_API_KEY: Your Anthropic API key

Getting Started

  1. Install dependencies:
pnpm i
  1. Run the Next.js development server (at http://localhost:3000):
pnpm run dev
  1. Run the Electron development environment:
pnpm run electron-dev
  1. Build the Electron app:
pnpm run electron-build