{"id":21855617,"url":"https://github.com/zeropsio/recipe-echo","last_synced_at":"2026-03-13T22:32:00.109Z","repository":{"id":246389888,"uuid":"820925553","full_name":"zeropsio/recipe-echo","owner":"zeropsio","description":"Zerops w/ Echo","archived":false,"fork":false,"pushed_at":"2024-07-01T07:33:31.000Z","size":470,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-26T10:47:56.425Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/zeropsio.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-27T13:00:53.000Z","updated_at":"2024-07-28T17:09:32.000Z","dependencies_parsed_at":"2024-06-27T19:20:22.038Z","dependency_job_id":null,"html_url":"https://github.com/zeropsio/recipe-echo","commit_stats":null,"previous_names":["zeropsio/recipe-echo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zeropsio/recipe-echo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeropsio%2Frecipe-echo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeropsio%2Frecipe-echo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeropsio%2Frecipe-echo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeropsio%2Frecipe-echo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeropsio","download_url":"https://codeload.github.com/zeropsio/recipe-echo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeropsio%2Frecipe-echo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30478132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T20:45:58.186Z","status":"ssl_error","status_checked_at":"2026-03-13T20:45:20.133Z","response_time":60,"last_error":"SSL_read: 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":[],"created_at":"2024-11-28T02:16:42.080Z","updated_at":"2026-03-13T22:32:00.046Z","avatar_url":"https://github.com/zeropsio.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zerops x Echo\n\n[Echo](https://echo.labstack.com/) is a high performance, extensible, minimalist Go web framework. This recipe aims to showcase basic Echo server-side rendered web app and how to integrate it with [Zerops](https://zerops.io), all through a simple file upload demo application.\n\n![echo](https://github.com/zeropsio/recipe-shared-assets/blob/main/covers/svg/cover-echo.svg)\n\n\u003cbr /\u003e\n\n## Deploy on Zerops\nYou can either click the deploy button to deploy directly on Zerops, or manually copy the [import yaml](https://github.com/zeropsio/recipe-echo/blob/main/zerops-project-import.yml) to the import dialog in the Zerops app.\n\n\u003cbr/\u003e\n\n[![Deploy on Zerops](https://github.com/zeropsio/recipe-shared-assets/blob/main/deploy-button/green/deploy-button.svg)](https://app.zerops.io/recipe/echo)\n\n\u003cbr/\u003e\n\n## Recipe features\n\n- **Load balanced** Echo web app running on clean **Zerops Alpine** service\n- Zerops **PostgreSQL 16** service as database\n- Zerops **Object Storage** (S3 compatible) service file storage\n- Zerops **KeyDB 6** service as Redis-compatible session storage\n- Cloud-ready **database migration** and initial **data seeding**\n- Utilization of Zerops built-in **environment and secret variables** system\n- Logs accessible through Zerops GUI\n- **[Mailpit](https://github.com/axllent/mailpit)** as **SMTP mock server**\n- **[Adminer](https://www.adminer.org)** for **quick database management** tool\n- Unlocked development experience:\n    - Access to database and mail mock through Zerops project VPN (`zcli vpn up`)\n    - Prepared `.env.dist` file (`cp .env.dist .env` and change ***** secrets found in Zerops GUI)\n    - Run `npm install` to be able to re-build `tailwind.css` (`npm run build`)\n    - Optional: install and use auto-reloading feature [air](https://github.com/air-verse/air)\n\n\u003cbr/\u003e\n\n## Production vs. development\n\nBase of the recipe is ready for production, the difference comes down to:\n\n- Use highly available version of the PostgreSQL database (change `mode` from `NON_HA` to `HA` in recipe YAML, `db` service section)\n- Use highly available version of the KeyDB store (change `mode` from `NON_HA` to `HA` in recipe YAML, `redis` service section)\n- Use at least two containers for Echo service to achieve high reliability and resilience (add `minContainers: 2` in recipe YAML, `app` service section)\n- Use production-ready third-party SMTP server instead of Mailpit (change `MAIL_` secret variables in recipe YAML `app` service)\n- Disable public access to Adminer or remove it altogether (remove service `adminer` from recipe YAML)\n- Secure cookies with `Domain` attribute set to your domain\n\n\u003cbr/\u003e\n\u003cbr/\u003e\n\n## Changes made over the default installation\n\nIf you want to modify your existing Echo app to efficiently run on Zerops, these are the general steps we took:\n\n- Use `os.Stdout` as logger output\n- Disable HTTPS termination, since the app will run behind our automatic SSL load balancer proxy \n\n\u003cbr/\u003e\n\nNeed help setting your project up? Join [Zerops Discord community](https://discord.com/invite/WDvCZ54).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeropsio%2Frecipe-echo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeropsio%2Frecipe-echo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeropsio%2Frecipe-echo/lists"}