{"id":28051524,"url":"https://github.com/vinsmokesomya/kalakaar","last_synced_at":"2025-05-12T01:54:58.333Z","repository":{"id":291437981,"uuid":"960001624","full_name":"VinsmokeSomya/Kalakaar","owner":"VinsmokeSomya","description":"✏️ कलाkaar (pronounced \"Kalakaar\") is an interactive drawing application that lets you collaborate with AI to bring your sketches to life.","archived":false,"fork":false,"pushed_at":"2025-05-04T16:14:05.000Z","size":581,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-12T01:54:53.331Z","etag":null,"topics":["dockerfile","gemini","gen-ai","javascript","kalakar","svelte","sveltekit","typescript"],"latest_commit_sha":null,"homepage":"https://kalakar.vercel.app","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VinsmokeSomya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"roadmap.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-03T17:42:29.000Z","updated_at":"2025-05-04T16:14:09.000Z","dependencies_parsed_at":"2025-05-04T17:26:30.609Z","dependency_job_id":"307ef9cf-949e-432a-9381-08626688979a","html_url":"https://github.com/VinsmokeSomya/Kalakaar","commit_stats":null,"previous_names":["vinsmokesomya/kalakaar"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VinsmokeSomya%2FKalakaar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VinsmokeSomya%2FKalakaar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VinsmokeSomya%2FKalakaar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VinsmokeSomya%2FKalakaar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VinsmokeSomya","download_url":"https://codeload.github.com/VinsmokeSomya/Kalakaar/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253660837,"owners_count":21943823,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dockerfile","gemini","gen-ai","javascript","kalakar","svelte","sveltekit","typescript"],"created_at":"2025-05-12T01:54:57.716Z","updated_at":"2025-05-12T01:54:58.320Z","avatar_url":"https://github.com/VinsmokeSomya.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# कलाkaar (Kalakaar) - AI-Powered Drawing Assistant\n\n![kalakar-logo](https://github.com/user-attachments/assets/6ccbcd98-7558-46e2-8693-0bffb7aedf91)\n\n**कलाkaar** (pronounced \"Kalakaar\") is an interactive drawing application that lets you collaborate with AI to bring your sketches to life. Draw anything, provide a prompt, and watch as Google's Gemini 2.0 AI transforms your creation.\n\n## Features\n\n- 🎨 Interactive canvas with customizable brush size and color\n- 🔄 Undo/redo functionality for drawing mistakes\n- 🌙 Dark/light mode toggle\n- 💾 Download your original sketches\n- ✨ AI-powered image generation with Google's Gemini 2.0\n- 🔍 Full-screen view for generated images\n- 📱 Responsive design for desktop and mobile\n\n## Technology Stack\n\n- **Frontend**: Svelte + SvelteKit\n- **Styling**: Tailwind CSS\n- **Drawing**: Canvas API\n- **AI**: Google Gemini 2.0 API\n\n## Project Structure\n\n```\nkalakaar/\n├── .github/                 # GitHub Actions workflows (e.g., deployment)\n│   └── workflows/\n│       └── deploy.yml\n├── src/\n│   ├── lib/                 # Reusable Svelte components (Canvas, FeedbackForm, etc.)\n│   ├── routes/              # Application pages and API endpoints\n│   │   ├── +layout.svelte   # Main layout component\n│   │   ├── +page.svelte     # Main application page component\n│   │   └── api/\n│   │       └── gemini/      # API endpoint for Gemini interaction\n│   │           └── +server.ts\n│   ├── app.css              # Global CSS styles\n│   └── app.html             # Main HTML template\n├── static/                  # Static assets (favicon, logo, etc.)\n│   ├── favicon.png\n│   └── kalakar-logo.png     # \u003c-- Make sure this file exists here!\n├── .env.local               # Local environment variables (API Key - DO NOT COMMIT)\n├── .gitignore               # Files/directories ignored by Git\n├── .dockerignore            # Files/directories ignored by Docker\n├── Dockerfile               # Instructions for building the Docker image\n├── docker-compose.yml       # Docker Compose configuration for local development\n├── package.json             # Project metadata, dependencies, and scripts\n├── README.md                # This file\n├── roadmap.md               # Project development roadmap\n├── svelte.config.js         # SvelteKit configuration\n├── tailwind.config.js       # Tailwind CSS configuration\n├── tsconfig.json            # TypeScript configuration\n└── vite.config.ts           # Vite configuration\n```\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 16+\n- A Google Gemini API key ([Get one here](https://ai.google.dev/))\n\n### Installation\n\n1. Clone the repository:\n   ```\n   git clone https://github.com/VinsmokeSomya/kalakaar.git\n   cd kalakaar\n   ```\n\n2. Install dependencies:\n   ```\n   npm install\n   ```\n\n3. Create a `.env.local` file in the root directory:\n   ```\n   GEMINI_API_KEY=\"your_gemini_api_key_here\"\n   ```\n\n4. Start the development server:\n   ```\n   npm run dev\n   ```\n\n5. Open your browser and navigate to `http://localhost:5173`\n\n## Usage\n\n1. Use the drawing canvas to create a sketch\n2. Customize your brush size and color using the controls\n3. Enter a prompt describing how you want the AI to transform your drawing\n4. Click \"Generate Image\" and watch your creation come to life!\n5. Download or view your AI-generated image in full-screen mode\n\n## Deployment\n\n### Using Docker\n\n```\ndocker-compose up -d\n```\n\n### Manual Deployment\n\nBuild the production version:\n\n```\nnpm run build\n```\n\nThen serve the application:\n\n```\nnpm run start\n```\n\n## Roadmap\n\nSee [roadmap.md](roadmap.md) for planned features and improvements.\n\n## License\n\nThis project is licensed under the Apache 2.0 License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- Google Gemini 2.0 API for image generation capabilities\n- The Svelte and SvelteKit teams for their amazing frameworks\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinsmokesomya%2Fkalakaar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinsmokesomya%2Fkalakaar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinsmokesomya%2Fkalakaar/lists"}