{"id":48581931,"url":"https://github.com/devalade/shango-deploy","last_synced_at":"2026-04-08T17:03:31.664Z","repository":{"id":272412544,"uuid":"854045157","full_name":"devalade/shango-deploy","owner":"devalade","description":"📦 Shango Deploy | Modern deployment automation tool that simplifies deploying web applications with zero configuration. Supports multiple frameworks, automated server provisioning, and built-in security best practices. Deploy anywhere with confidence. 🚀 ","archived":false,"fork":false,"pushed_at":"2025-02-26T22:04:07.000Z","size":396,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T23:18:52.668Z","etag":null,"topics":["automation","continuous-deployment","deployment","devops","docker","infrastructure-as-code","nextjs","server-provisioning","typescript","web-deployment"],"latest_commit_sha":null,"homepage":"https://shango.devalade.me","language":"TypeScript","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/devalade.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":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-08T09:00:17.000Z","updated_at":"2025-02-26T22:04:11.000Z","dependencies_parsed_at":"2025-01-14T09:42:12.704Z","dependency_job_id":"82d0f6c1-84c6-4468-b557-fc1fb6fb3bfc","html_url":"https://github.com/devalade/shango-deploy","commit_stats":null,"previous_names":["devalade/shango-deploy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devalade/shango-deploy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devalade%2Fshango-deploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devalade%2Fshango-deploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devalade%2Fshango-deploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devalade%2Fshango-deploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devalade","download_url":"https://codeload.github.com/devalade/shango-deploy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devalade%2Fshango-deploy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31564917,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"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":["automation","continuous-deployment","deployment","devops","docker","infrastructure-as-code","nextjs","server-provisioning","typescript","web-deployment"],"created_at":"2026-04-08T17:03:20.224Z","updated_at":"2026-04-08T17:03:31.638Z","avatar_url":"https://github.com/devalade.png","language":"TypeScript","readme":"# Shango Deploy 🚀\n\nShango Deploy is a modern deployment tool that simplifies the process of deploying web applications. It provides a high-level configuration interface that generates deployment configurations for various frameworks and automatically provisions servers with best practices.\n\n## Features ✨\n\n- 🛠 **Framework Support**: Deploy applications built with:\n  - Next.js\n  - Remix\n  - Nuxt.js\n  - Svelte\n  - AdonisJS\n  - NestJS\n\n- 🗄 **Database Integration**:\n  - PostgreSQL\n  - MySQL\n  - SQLite\n  - Redis (for caching)\n\n- 🔧 **Server Provisioning**:\n  - Automatic security hardening\n  - Docker setup\n  - Fail2Ban configuration\n  - UFW firewall setup\n  - SSL/TLS configuration\n  - System monitoring\n\n- 📦 **Built-in Templates**:\n  - Dockerfile generation\n  - GitHub Actions workflows\n  - deployment configurations\n\n## Installation 📥\n\n```bash\nnpm install -g shango-deploy\n```\n\n## Quick Start 🚀\n\n1. Initialize a new Shango configuration:\n\n```bash\nshango add\n```\n\n2. Follow the interactive prompts to configure your deployment.\n\n3. Provision your servers:\n\n```bash\nshango provision\n```\n\n4. Deploy your application:\n\n```bash\nshango deploy\n```\n\n## Configuration 📝\n\nShango uses a YAML configuration file (`shango.yml`) to define your deployment setup:\n\n```yaml\napp:\n  framework: nextjs\n  domain: myapp.com\n  packageManager: npm\n  database: postgres\n  cacheDatabase: redis\n\n  servers:\n    - environment: staging\n      ipv4:\n        - 33.34.20.3\n        - 33.34.20.4\n    - environment: production\n      ipv4: 44.34.21.23\n```\n\n## Server Requirements 🖥\n\n- Ubuntu 20.04 or newer\n- SSH access with root privileges\n- Open ports: 22 (SSH), 80 (HTTP), 443 (HTTPS)\n\n## Security Best Practices 🔒\n\nShango automatically implements several security best practices:\n\n- SSH hardening\n- Automatic security updates\n- Fail2Ban for brute force protection\n- UFW firewall configuration\n- SSL/TLS setup with Let's Encrypt\n- System hardening\n\n## Contributing 🤝\n\nWe welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.\n\n1. Fork the repository\n2. Create a feature branch\n3. Commit your changes\n4. Push to the branch\n5. Open a Pull Request\n\n## Architecture 🏗\n\nShango Deploy is built with a modular architecture:\n\n- **High-Level Config Parser**: Converts user-friendly configuration to detailed deployment specs\n- **Server Provisioner**: Handles server setup and security hardening\n- **Template System**: Manages framework-specific configurations and files\n- **Deployment Engine**: Orchestrates the deployment process\n\n## License 📄\n\nMIT License - see the [LICENSE](LICENSE) file for details\n\n## Support 💬\n\n- Documentation: [shango.devalade.me/docs](https://shango.devalade.me/docs)\n- Issues: [GitHub Issues](https://github.com/your-username/shango-deploy/issues)\n- Discord: [Join our community](https://discord.gg/shango-deploy)\n\n## Credits 👏\n\nShango Deploy is inspired by various deployment tools and best practices from the community. Special thanks to:\n\n- [Kamal](https://github.com/basecamp/kamal)\n- [Spin](https://github.com/serversideup/spin)\n- [Deployer](https://github.com/deployerphp/deployer)\n- [Docker](https://www.docker.com/)\n\n## Roadmap 🗺\n\n- [ ] Support for more frameworks\n- [ ] Zero-downtime deployments\n- [ ] Custom deployment hooks\n- [ ] Monitoring integration\n- [ ] Backup management\n\n---\n\nBuilt with ❤️ by [devalade](https://devalade.me)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevalade%2Fshango-deploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevalade%2Fshango-deploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevalade%2Fshango-deploy/lists"}