Getting Started

This guide will walk you through setting up your development environment and building your first project with the Deepcomet AI ecosystem tools.

Prerequisites

  • Node.js (v18 or later) — For web-based projects
  • Git — Version control
  • Go (optional) — For Hugo-based legacy projects
  • A modern code editor (VS Code recommended)

Clone a Project

Start by cloning one of our repositories:

terminal
# Clone the GeminiChat (Nuxt + Tauri version)
git clone https://github.com/Nehal-aditya/gemini-chat.git
cd gemini-chat

# Install dependencies
npm install

# Start development server
npm run dev

Project Structure

Our projects follow consistent patterns:

  • src/ — Source code
  • public/ — Static assets
  • docs/ — Project documentation
  • tests/ — Test suites

Next Steps

Once your environment is set up:

  1. Explore the Architecture guide to understand design principles
  2. Check the API Reference for detailed documentation
  3. Join the Community to connect with other developers