diff --git a/quickstart.mdx b/quickstart.mdx
index f513dd4..d468df3 100644
--- a/quickstart.mdx
+++ b/quickstart.mdx
@@ -23,18 +23,16 @@ Step 1: Set up your development environment
**Desktop App Version (Recommended)**
- Download the latest release from GitHub:
+ Download the latest prebuilt release for macOS, Windows, and Linux:
- Visit [GitHub Releases](https://github.com/codinit-dev/codinit-dev/releases/latest)
- - Download the installer for your platform:
- - **Windows**: `.exe` installer
- - **macOS**: `.dmg` installer
- - **Linux**: `.AppImage` or `.deb` package
+ - Download the installer for your platform
- Run the installer and follow the setup wizard
- Full-featured native application with automatic updates
- **Alternative: Build from Source (for developers)**
+ **Alternative: Run from Source**
+
+ Clone the repository and install dependencies:
- Desktop App:
```bash
git clone https://github.com/codinit-dev/codinit-dev.git
cd codinit-dev
@@ -44,23 +42,32 @@ Step 1: Set up your development environment
```bash pnpm
pnpm install
- cp .env.example .env.local
- pnpm run dev
```
```bash npm
npm install
- cp .env.example .env.local
- npm run dev
```
- ```bash yarn
- yarn install
- cp .env.example .env.local
- yarn dev
+ Configure your environment by creating a `.env` file and adding your preferred AI provider keys:
+
+ ```bash
+ # Create .env file with your AI provider API keys
+ # You can mix and match multiple providers
```
- Both versions offer Different features - choose based on your preference for native or web applications.
+ Run the development server:
+
+ ```bash pnpm
+ pnpm run dev
+ ```
+
+ ```bash npm
+ npm run dev
+ ```
+
+ The application will be available at `http://localhost:5173`
+
+ Choose the desktop app for a native experience or run from source for development and customization.
1. Open the CodinIT application
@@ -133,7 +140,7 @@ Now that you're set up with CodinIT AI IDE, explore these AI coding features:
- Learn about 18+ supported LLM providers including Claude, GPT-4, Gemini for AI code generation.
+ Learn about 19+ supported LLM providers including Claude, GPT-4, Gemini for AI code generation.
@@ -141,7 +148,7 @@ Now that you're set up with CodinIT AI IDE, explore these AI coding features:
- Deploy AI-generated applications to Vercel, Netlify with one-click deployment.
+ Deploy AI-generated applications to Vercel, Netlify, and GitHub Pages with one-click deployment.