{"id":50721724,"url":"https://github.com/cloudsteak/template-public-microservices-basic","last_synced_at":"2026-06-10T00:30:51.710Z","repository":{"id":332479945,"uuid":"1133929228","full_name":"cloudsteak/template-public-microservices-basic","owner":"cloudsteak","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-14T02:55:25.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T05:53:47.693Z","etag":null,"topics":["argocd","devops","gitops","iac","microservices","template","tools"],"latest_commit_sha":null,"homepage":"","language":null,"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/cloudsteak.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-14T02:24:45.000Z","updated_at":"2026-01-14T02:55:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cloudsteak/template-public-microservices-basic","commit_stats":null,"previous_names":["cloudsteak/template-public-microservices-basic"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/cloudsteak/template-public-microservices-basic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudsteak%2Ftemplate-public-microservices-basic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudsteak%2Ftemplate-public-microservices-basic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudsteak%2Ftemplate-public-microservices-basic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudsteak%2Ftemplate-public-microservices-basic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudsteak","download_url":"https://codeload.github.com/cloudsteak/template-public-microservices-basic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudsteak%2Ftemplate-public-microservices-basic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34132030,"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-09T02:00:06.510Z","response_time":63,"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":["argocd","devops","gitops","iac","microservices","template","tools"],"created_at":"2026-06-10T00:30:51.025Z","updated_at":"2026-06-10T00:30:51.704Z","avatar_url":"https://github.com/cloudsteak.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Template Repository\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Initialize your Python Project](#initialize-your-python-project)\n    - [Prerequisites](#prerequisites)\n    - [Initialize the Project](#initialize-the-project)\n    - [Common UV Commands](#common-uv-commands)\n- [Workflows](#workflows)\n\n## Overview\n\n## Initialize your Python Project\n\nThis project uses [UV](https://docs.astral.sh/uv/) - a fast Python package installer and resolver with **Python 3.12**.\n\n### Prerequisites\n\nInstall UV:\n\n```bash\n# macOS - Homebrew (recommended)\nbrew install uv\n\n# macOS/Linux - Official installer\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n# Windows\npowershell -c \"irm https://astral.sh/uv/install.ps1 | iex\"\n\n# Or via pip\npip install uv\n```\n\n### Initialize the Project\n\n```bash\n# Initialize a new Python project with UV\nuv init\n\n# Create a virtual environment with Python 3.12\nuv venv --python 3.12\n\n# Install/sync dependencies (UV automatically uses the virtual environment)\nuv sync\n\n# Note: You don't need to manually activate the venv!\n# UV commands automatically detect and use the .venv directory\n\n# If you still want to manually activate:\n# macOS/Linux: source .venv/bin/activate\n# Windows: .venv\\Scripts\\activate\n```\n\n### Common UV Commands\n\n```bash\n# Add a new dependency\nuv add \u003cpackage-name\u003e\n\n# Add a development dependency\nuv add --dev \u003cpackage-name\u003e\n\n# Update dependencies\nuv lock --upgrade\n\n# Run a command in the virtual environment\nuv run \u003ccommand\u003e\n\n# Install all dependencies\nuv sync\n```\n\n## Workflows\n\nAvailable workflows in this repository:\n\n### 1. New Release - Manual\n\n- **File:** [.github/workflows/create-release.yml](.github/workflows/create-release.yml)\n- **Trigger:** Manual (workflow_dispatch)\n- **Description:** Creates a new release with semantic versioning\n- **Options:**\n  - **patch** - Bug fixes and minor changes (e.g., 1.0.0 → 1.0.1)\n  - **minor** - New features, backward compatible (e.g., 1.0.0 → 1.1.0)\n  - **major** - Breaking changes (e.g., 1.0.0 → 2.0.0)\n- **Uses:** `cloudsteak/cm-workflows/.github/workflows/new-release.yml@1.3.0`\n\n### 2. Production Build \u0026 Push - Manual\n\n- **File:** [.github/workflows/prod-build.yml](.github/workflows/prod-build.yml)\n- **Trigger:** Manual (workflow_dispatch)\n- **Description:** Manually triggers a production build and pushes the Docker image\n- **Image Name:** Uses the repository name as the image name\n- **Uses:** `cloudsteak/cm-workflows/.github/workflows/production-build-push.yml@1.3.0`\n\n### 3. Staging Build \u0026 Push - Automatic\n\n- **File:** [.github/workflows/staging-build.yml](.github/workflows/staging-build.yml)\n- **Trigger:** Automatic on push to `main` branch\n- **Monitored Files:**\n  - `Dockerfile`\n  - `pyproject.toml`\n  - `poetry.lock`\n  - `.github/workflows/staging-build.yml`\n- **Description:** Automatically builds and pushes staging Docker images when monitored files are updated\n- **Image Name:** Uses the repository name as the image name\n- **Uses:** `cloudsteak/cm-workflows/.github/workflows/staging-build-push.yml@1.3.0`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudsteak%2Ftemplate-public-microservices-basic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudsteak%2Ftemplate-public-microservices-basic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudsteak%2Ftemplate-public-microservices-basic/lists"}