A minimal Electron application with JavaScript, Electron, and Tailwind CSS.
.env
src/main/
– Electron main process codesrc/preload/
– Preload scripts (secure API exposure)src/renderer/
– Renderer process (UI, assets, HTML, JS)resources/
– App icons and static resources.env
– Environment variables (see .sample.env
for template)npm install
npm run dev
# For Windows
npm run build:win
# For macOS
npm run build:mac
# For Linux
npm run build:linux
Copy .sample.env
to .env
and add your Groq API key:
GROQ_API_KEY=YOUR_API_KEY
npm run dev
.npm run lint
npm run format
MIT