{"id":40197289,"url":"https://github.com/oeway/deno-app-engine","last_synced_at":"2026-01-19T20:04:58.644Z","repository":{"id":294762801,"uuid":"988001968","full_name":"oeway/deno-app-engine","owner":"oeway","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-27T04:57:03.000Z","size":1284,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-27T10:58:52.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/oeway.png","metadata":{"files":{"readme":".github/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}},"created_at":"2025-05-21T23:02:24.000Z","updated_at":"2025-08-27T04:57:06.000Z","dependencies_parsed_at":"2025-06-09T20:23:22.131Z","dependency_job_id":"7924be12-b918-45c4-a6e7-475859d70c6b","html_url":"https://github.com/oeway/deno-app-engine","commit_stats":null,"previous_names":["oeway/deno-code-interpreter","oeway/deno-app-engine"],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/oeway/deno-app-engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oeway%2Fdeno-app-engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oeway%2Fdeno-app-engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oeway%2Fdeno-app-engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oeway%2Fdeno-app-engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oeway","download_url":"https://codeload.github.com/oeway/deno-app-engine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oeway%2Fdeno-app-engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28583644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T19:46:29.903Z","status":"ssl_error","status_checked_at":"2026-01-19T19:45:54.560Z","response_time":67,"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":"2026-01-19T20:04:58.083Z","updated_at":"2026-01-19T20:04:58.639Z","avatar_url":"https://github.com/oeway.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Actions Workflows\n\nThis directory contains GitHub Actions workflows for the Deno App Engine project.\n\n## Workflows\n\n### 1. CI/CD (`ci.yml`)\n- **Triggers**: Push to main/master, Pull Requests\n- **Features**:\n  - Runs all tests with coverage reporting\n  - Builds and publishes Docker containers to GitHub Packages\n  - Creates GitHub releases for new versions\n  - Automatic version tagging based on `deno.json`\n\n### 2. Test Only (`test.yml`)\n- **Triggers**: Push to main/master, Pull Requests  \n- **Features**:\n  - Runs the full test suite\n  - Generates coverage reports\n  - Uploads coverage to Codecov\n\n### 3. Docker Publishing (`publish-container.yml`)\n- **Triggers**: Push to main/master (when specific files change)\n- **Features**:\n  - Builds and publishes Docker containers\n  - Creates version tags based on `deno.json`\n  - Publishes to GitHub Container Registry\n\n## Docker Images\n\nPublished Docker images are available at:\n- **Latest**: `ghcr.io/[owner]/deno-app-engine:latest`\n- **Versioned**: `ghcr.io/[owner]/deno-app-engine:0.1.8`\n\n### Usage\n\n```bash\n# Pull the latest image\ndocker pull ghcr.io/[owner]/deno-app-engine:latest\n\n# Run the container\ndocker run -p 8000:8000 ghcr.io/[owner]/deno-app-engine:latest\n\n# Run with environment variables\ndocker run -p 8000:8000 \\\n  -e HYPHA_SERVER_URL=https://hypha.aicell.io \\\n  -e HYPHA_WORKSPACE=your-workspace \\\n  -e HYPHA_CLIENT_ID=your-client-id \\\n  ghcr.io/[owner]/deno-app-engine:latest\n```\n\n## Version Management\n\nVersions are automatically detected from the `version` field in `deno.json`. To create a new release:\n\n1. Update the version in `deno.json`:\n   ```json\n   {\n     \"version\": \"0.2.0\"\n   }\n   ```\n\n2. Commit and push to main/master\n3. The workflow will automatically:\n   - Build and tag a new Docker image\n   - Create a Git tag (`v0.2.0`)\n   - Create a GitHub release\n\n## Coverage\n\nTest coverage reports are automatically uploaded to Codecov. You can view coverage reports at:\n`https://codecov.io/gh/[owner]/deno-app-engine`\n\n## Environment Variables\n\nThe Docker container supports these environment variables:\n\n- `HYPHA_SERVER_URL`: Hypha server URL (default: https://hypha.aicell.io)\n- `HYPHA_WORKSPACE`: Hypha workspace name\n- `HYPHA_TOKEN`: Authentication token for Hypha\n- `ALLOWED_KERNEL_TYPES`: Comma-separated list of allowed kernel types\n- `KERNEL_POOL_ENABLED`: Enable/disable kernel pooling (default: true)\n- `KERNEL_POOL_SIZE`: Number of kernels in pool (default: 2) ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foeway%2Fdeno-app-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foeway%2Fdeno-app-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foeway%2Fdeno-app-engine/lists"}