Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 25 additions & 18 deletions quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,16 @@ Step 1: Set up your development environment
<Accordion icon="download" title="Install CodinIT">
**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
Expand All @@ -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
```

<Tip>Both versions offer Different features - choose based on your preference for native or web applications.</Tip>
Run the development server:

```bash pnpm
pnpm run dev
```

```bash npm
npm run dev
```

The application will be available at `http://localhost:5173`

<Tip>Choose the desktop app for a native experience or run from source for development and customization.</Tip>
</Accordion>
<Accordion icon="play" title="Launch CodinIT">
1. Open the CodinIT application
Expand Down Expand Up @@ -133,15 +140,15 @@ Now that you're set up with CodinIT AI IDE, explore these AI coding features:
<CardGroup cols={2}>

<Card title="AI model provider guide" icon="plug" href="/providers/cloud-providers">
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.
</Card>

<Card title="AI development tools" icon="terminal" href="/features/development/workbench">
Master the AI-powered IDE with intelligent code completion and refactoring tools.
</Card>

<Card title="AI-assisted deployment" icon="rocket" href="/integrations/deployments">
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.
</Card>

<Card title="Git with AI assistance" icon="git-branch" href="/integrations/git">
Expand Down