{"id":29959462,"url":"https://github.com/axewerfer/debian-devbox-installer","last_synced_at":"2026-04-07T09:31:17.945Z","repository":{"id":303718224,"uuid":"1016436140","full_name":"axewerfer/debian-devbox-installer","owner":"axewerfer","description":"🚀 Automated installer for complete full-stack development environment on Debian/Ubuntu with AI integration, security tools, and monitoring","archived":false,"fork":false,"pushed_at":"2025-07-10T12:41:28.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-03T22:03:16.361Z","etag":null,"topics":["ai-tools","automation","aws","bash-scripts","claude-code","debian","development-environment","devops","docker","full-stack","installer","monitoring","open-source","security","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/axewerfer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2025-07-09T02:44:46.000Z","updated_at":"2025-07-10T12:41:31.000Z","dependencies_parsed_at":"2025-07-09T04:27:33.439Z","dependency_job_id":"326e35f4-84dc-4c75-a1fb-41293d9be48e","html_url":"https://github.com/axewerfer/debian-devbox-installer","commit_stats":null,"previous_names":["axewerfer/debian-devbox-installer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/axewerfer/debian-devbox-installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axewerfer%2Fdebian-devbox-installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axewerfer%2Fdebian-devbox-installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axewerfer%2Fdebian-devbox-installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axewerfer%2Fdebian-devbox-installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/axewerfer","download_url":"https://codeload.github.com/axewerfer/debian-devbox-installer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axewerfer%2Fdebian-devbox-installer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31507930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["ai-tools","automation","aws","bash-scripts","claude-code","debian","development-environment","devops","docker","full-stack","installer","monitoring","open-source","security","ubuntu"],"created_at":"2025-08-03T22:00:54.946Z","updated_at":"2026-04-07T09:31:17.928Z","avatar_url":"https://github.com/axewerfer.png","language":"Shell","readme":"# 🚀 Debian Development Environment Installer\n\n[![Build Status](https://github.com/axewerfer/debian-devbox-installer/workflows/Test%20Installation%20Scripts/badge.svg)](https://github.com/axewerfer/debian-devbox-installer/actions)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/axewerfer/debian-devbox-installer)](https://github.com/axewerfer/debian-devbox-installer/issues)\n[![GitHub stars](https://img.shields.io/github/stars/axewerfer/debian-devbox-installer)](https://github.com/axewerfer/debian-devbox-installer/stargazers)\n\nA comprehensive automated installer for setting up a complete full-stack development environment on Debian/Ubuntu systems. Perfect for solo developers who need everything from basic programming tools to advanced DevOps, security, and AI integration.\n\n## ⚡ Quick Start\n\n### Option 1: Clone Repository (Recommended)\n```bash\n# Clone the repository\ngit clone https://github.com/axewerfer/debian-devbox-installer.git\ncd debian-devbox-installer\n\n# Make scripts executable\nchmod +x scripts/*.sh\n\n# Full installation (45-60 minutes)\n./scripts/install-devbox.sh\n\n# OR quick essentials only (15 minutes)\n./scripts/quick-setup.sh\n\n# Configure credentials (after either option)\n./scripts/configure-credentials.sh\n\n# Fix any issues\n./scripts/troubleshoot.sh\n```\n\n### Option 2: Direct Download \u0026 Run\n```bash\n# Quick essentials only (15 minutes)\ncurl -O https://raw.githubusercontent.com/axewerfer/debian-devbox-installer/main/scripts/quick-setup.sh\nchmod +x quick-setup.sh\n./quick-setup.sh\n\n# OR full installation (download all scripts first)\nwget https://github.com/axewerfer/debian-devbox-installer/archive/refs/heads/main.zip\nunzip main.zip\ncd debian-devbox-installer-main\nchmod +x scripts/*.sh\n./scripts/install-devbox.sh\n```\n\n## 📋 What Gets Installed\n\n### 🔧 Core Development Tools\n- **Programming Languages**: Python 3, Node.js, Rust\n- **Package Managers**: pip, npm, yarn, pnpm, cargo, poetry\n- **Development Environment**: VS Code with 20+ essential extensions\n- **Version Control**: Git, GitHub CLI\n\n### ☁️ Cloud \u0026 Infrastructure\n- **AWS Tools**: CLI v2, SAM CLI, CDK, Amplify CLI\n- **Infrastructure as Code**: Terraform, Ansible, Pulumi\n- **Container \u0026 Orchestration**: Docker, Kubernetes tools\n- **CI/CD**: Jenkins, GitLab Runner, ArgoCD, Flux\n\n### 🔐 Security \u0026 Quality\n- **Vulnerability Scanning**: Trivy, OWASP ZAP, SonarQube Scanner\n- **Code Quality**: ESLint, Prettier, Black, Clippy\n- **Secrets Management**: Doppler, SOPS, Vault\n- **Dependency Scanning**: Safety, npm audit, cargo audit\n\n### 📊 Monitoring \u0026 Observability\n- **Metrics**: Prometheus, Grafana, Node Exporter\n- **Logging**: ELK Stack, Loki, Vector\n- **Performance Testing**: K6, Apache Bench, Wrk\n- **Uptime Monitoring**: Uptime Kuma\n### 🗄️ Database Support\n- **Databases**: PostgreSQL, MySQL, MongoDB, Redis\n- **Clients**: DBeaver, CLI tools for all databases\n- **Connection Management**: Automatic service setup\n\n### 🤖 AI Integration\n- **Claude Code**: Anthropic's agentic coding tool with hooks\n- **MCP Servers**: Model Context Protocol for AI-tool integration\n- **VS Code AI Extensions**: Copilot Chat, Cline, CodeiumVs, AI Toolkit\n\n### 🌐 Web Development\n- **Build Tools**: Webpack, Vite, Parcel, Rollup, ESBuild\n- **CSS Tools**: Sass, Less, PostCSS, Tailwind CSS\n- **Frameworks**: React, Vue, Angular, Svelte tooling\n- **Testing**: Jest, Cypress, Playwright, Puppeteer\n\n## 🎯 Installation Scripts\n\n### 1. **Full Installation** (Recommended)\n```bash\n./scripts/install-devbox.sh\n```\n\n**Duration**: ~45-60 minutes  \n**Installs**: Everything listed above  \n**Requires**: Manual input for credentials and configuration\n\n### 2. **Quick Setup** (Essentials Only)\n```bash\n./scripts/quick-setup.sh\n```\n\n**Duration**: ~15 minutes  \n**Installs**: Python, Node.js, Rust, VS Code, Git, Docker, AWS CLI  \n**Good for**: Getting started quickly, minimal setup\n\n### 3. **Credentials Configuration**\n```bash\n./scripts/configure-credentials.sh\n```\n\n**Configures**:\n- Git username/email and GitHub authentication\n- AWS credentials and profiles\n- Anthropic API key (for Claude Code)\n- MCP server connections and database connections\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxewerfer%2Fdebian-devbox-installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faxewerfer%2Fdebian-devbox-installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxewerfer%2Fdebian-devbox-installer/lists"}