원클릭으로
acceptance-testing
Use Docker Compose to build and run the acceptance environment for `save_it`.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use Docker Compose to build and run the acceptance environment for `save_it`.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when working on `save_it` local development, setup, dev server startup, local checks, Typesense migrations, or code submission workflow.
Prepare, verify, and publish `save_it` releases by updating `mix.exs`, creating the release commit and tag, and publishing a GitHub release. Use when the user asks to cut a stable release, prepare a prerelease, or verify release readiness for this repository. This repository uses CalVer `YYYY.M.D` for stable releases and prerelease tags such as `YYYY.M.D-rc.N`.
Maintain the save_it repository CHANGELOG.md using Keep a Changelog 1.1.0 with CalVer version headings. Use at the end of repository work, before final response or commit/PR handoff, when user-facing product behavior, features, fixes, removals, security changes, or breaking changes changed.
| name | acceptance-testing |
| description | Use Docker Compose to build and run the acceptance environment for `save_it`. |
| metadata | {"short-description":"Acceptance testing with Docker"} |
Use this skill when the user asks for an acceptance testing flow based on Docker.
save_it:e2esave_it on the Compose network with .envdocker build -t save_it:e2e .
docker compose up -d cobalt-api typesense typelens
docker compose --profile e2e up -d
docker build -t save_it:e2e . uses the local Dockerfile; the e2e Compose profile runs that tagged imagesave_it reads .env through env_file in docker-compose.ymlsave_it uses container-safe service URLs:
COBALT_API_URL=http://cobalt-api:9000TYPESENSE_URL=http://typesense:8108typelens is optional for app boot, but useful during acceptance checkse2e profile requires .env to exist at the repository rootdocker compose --profile e2e logs -f save_it
docker compose down
save_it:e2e builds successfullysave_it boots with .envsave_it