deployment-config-create

Configure deployment files with a common baseline file plus environment override files. Use when setting up or adjusting Makefile-first deployment for test/prod/custom environments and non-default SSH/SCP ports.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "deployment-config-create" with this command: npx skills add jsonlee12138/easy-deployment/jsonlee12138-easy-deployment-deployment-config-create

Deployment Config Create

  1. Use a Makefile-first workflow, but keep environment data in files.
  2. Keep shared values in .deploy.env.common.
  3. Keep environment differences in .deploy.env.<ENV_MODE>.
  4. Run scripts/create_config.py to patch or create:
  • Makefile deployment block (shared command contract)
  • Dockerfile template (if missing)
  • docker-compose.local.yaml, docker-compose.test.yaml, docker-compose.yaml
  • docker-compose.<custom-env>.yaml for custom environments
  • .deploy.env.common, .deploy.env.test, .deploy.env.prod, .deploy.env.<custom-env>
  1. Use REMOTE_PORT in common or env override files for non-22 SSH/SCP.
  2. Keep changes idempotent via managed markers.

Command

python3 skills/deployment-config-create/scripts/create_config.py \
  --root . \
  --app-name "$APP_NAME" \
  --registry-host "$REGISTRY_HOST" \
  --remote-user "$REMOTE_USER" \
  --remote-host "$REMOTE_HOST" \
  --remote-port "$REMOTE_PORT" \
  --test-remote-host "$TEST_REMOTE_HOST" \
  --test-remote-port "$TEST_REMOTE_PORT" \
  --prod-remote-host "$PROD_REMOTE_HOST" \
  --prod-remote-port "$PROD_REMOTE_PORT" \
  --custom-env "$CUSTOM_ENV"

# Optional JSON profile input
python3 skills/deployment-config-create/scripts/create_config.py --root . --from-json deploy-profile.json

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

deployment-config-validate

No summary provided by upstream source.

Repository SourceNeeds Review
General

deployment-post-checks

No summary provided by upstream source.

Repository SourceNeeds Review
General

deployment-version-policy

No summary provided by upstream source.

Repository SourceNeeds Review