{"id":50446748,"url":"https://github.com/tako-sh/tako","last_synced_at":"2026-06-13T09:01:14.008Z","repository":{"id":337630936,"uuid":"1154201512","full_name":"tako-sh/tako","owner":"tako-sh","description":"Build, run, and manage app instances anywhere, without thinking about the boring stuff","archived":false,"fork":false,"pushed_at":"2026-06-11T01:48:46.000Z","size":100033,"stargazers_count":49,"open_issues_count":2,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-11T03:19:08.845Z","etag":null,"topics":["application-server","bun","deploy","development-server","development-tools","load-balancer","reverse-proxy","tls-certificate"],"latest_commit_sha":null,"homepage":"https://tako.sh","language":"Rust","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/tako-sh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-10T05:49:01.000Z","updated_at":"2026-06-11T01:48:50.000Z","dependencies_parsed_at":"2026-03-06T04:17:04.143Z","dependency_job_id":null,"html_url":"https://github.com/tako-sh/tako","commit_stats":null,"previous_names":["lilienblum/tako","tako-sh/tako"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/tako-sh/tako","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tako-sh%2Ftako","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tako-sh%2Ftako/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tako-sh%2Ftako/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tako-sh%2Ftako/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tako-sh","download_url":"https://codeload.github.com/tako-sh/tako/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tako-sh%2Ftako/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34204205,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["application-server","bun","deploy","development-server","development-tools","load-balancer","reverse-proxy","tls-certificate"],"created_at":"2026-05-31T22:01:09.539Z","updated_at":"2026-06-13T09:01:13.950Z","avatar_url":"https://github.com/tako-sh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://tako.sh\" target=\"_blank\" rel=\"noopener\"\u003e\u003cimg src=\"assets/readme-banner.webp\" alt=\"Tako - ship apps to your own servers\" width=\"100%\" /\u003e\u003c/a\u003e\n\n[![npm: tako.sh](https://img.shields.io/npm/v/tako.sh?label=npm%3A%20tako.sh\u0026color=9BC4B6)](https://www.npmjs.com/package/tako.sh)\n[![skills.sh](https://skills.sh/b/tako-sh/tako)](https://skills.sh/tako-sh/tako)\n\n## What is Tako?\n\nShip apps to your own servers without turning deployment into a part-time job.\n\nTako gives you the \"upload files, refresh, done\" feeling with modern guardrails: rolling deploys, load balancing, HTTPS, secrets, and logs out of the box.\n\nTako is not just a deployment tool. The vision is a self-hosted application platform: the backend for your backend.\n\nDeployment is the starting point, not the finish line. Over time, Tako should provide the core primitives teams end up rebuilding in every stack: durable channels, workflows, and other platform capabilities built into one tool instead of stitched together from many.\n\n## Install\n\nInstall the CLI:\n\n```bash\ncurl -fsSL https://tako.sh/install.sh | sh\n```\n\nVerify:\n\n```bash\ntako --version\n```\n\nStart local development from your app directory:\n\n```bash\nbun add tako.sh   # or: npm install tako.sh\ntako dev\n```\n\nSet up a deployment host:\n\n```bash\n# Connect the host and your workstation to Tailscale first.\n# The host installer bootstraps only; servers add starts and verifies it.\nsudo sh -c \"$(curl -fsSL https://tako.sh/install-server.sh)\"\ntako servers add my-server\n# Or install/repair over SSH while adding:\ntako servers add root@my-server\n# Custom public ports:\ntako servers add root@my-server --http-port 8080 --https-port 8443\n```\n\nDeploy your app:\n\n```bash\ntako init    # prompts for app name + route, offers wildcard HTTPS setup, writes tako.toml\ntako servers add my-server\n# Optional: Let’s Encrypt wildcard certificates via Cloudflare DNS-01; traffic can stay DNS-only/direct.\n# Deploy verifies the token is active and can read the matching Cloudflare zone.\ntako credentials set ssl.cloudflare --env production --expires-on \"in 90 days\"\n# Optional: Cloudflare Origin CA certificates for Cloudflare-proxied apps.\n# Set ssl = \"cloudflare\" in tako.toml, then store the provider token:\ntako credentials set ssl.cloudflare --env production --expires-on \"in 90 days\"\ntako deploy\n```\n\n## Quick links\n\n- [Quickstart](https://tako.sh/docs/quickstart) — install to live in minutes\n- [How Tako Works](https://tako.sh/docs/how-tako-works) — architecture and mental model\n- [tako.toml Reference](https://tako.sh/docs/tako-toml) — every config option\n- [CLI Reference](https://tako.sh/docs/cli) — all commands and flags\n- [Framework Guides](https://tako.sh/docs/framework-guides) — adapter examples\n- [Local Development](https://tako.sh/docs/development) — HTTPS, DNS, environment variables\n- [Deployment](https://tako.sh/docs/deployment) — deploy flow, rolling updates, rollbacks\n- [Troubleshooting](https://tako.sh/docs/troubleshooting) — common issues and fixes\n- [Examples](https://github.com/tako-sh/tako/tree/main/examples)\n- [SDK](https://www.npmjs.com/package/tako.sh)\n- [Benchmarks](BENCHMARKS.md) — current TLDR and raw-data links\n\n## Agent Skills\n\nInstall Tako skills for Codex, Claude Code, Cursor, and other skills.sh-compatible agents:\n\n```bash\nnpx skills add tako-sh/tako\n```\n\nInstall a specific skill with `--skill tako`, `--skill tako-sdk-js`, or `--skill tako-sdk-go`.\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftako-sh%2Ftako","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftako-sh%2Ftako","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftako-sh%2Ftako/lists"}