refactor(config): rename .env.example to .mam.env.example and isolate .mam.env in gitignore
This commit is contained in:
+5
-1
@@ -1,6 +1,7 @@
|
|||||||
# 1회성 작업 자료 (agy/claude 워커에게 보낸 프롬프트)
|
# 1회성 작업 자료 (agy/claude 워커에게 보낸 프롬프트 및 인수인계 문서)
|
||||||
_agy_prompt_*.md
|
_agy_prompt_*.md
|
||||||
_claude_prompt_*.md
|
_claude_prompt_*.md
|
||||||
|
CURRENT_JOB.md
|
||||||
|
|
||||||
# 임시 검증용 산출물
|
# 임시 검증용 산출물
|
||||||
test-sessions*.yaml
|
test-sessions*.yaml
|
||||||
@@ -17,6 +18,9 @@ __pycache__/
|
|||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
!.env.example
|
!.env.example
|
||||||
|
.mam.env
|
||||||
|
.mam.env.*
|
||||||
|
!.mam.env.example
|
||||||
|
|
||||||
# 빌드/배포 HTML 산출물
|
# 빌드/배포 HTML 산출물
|
||||||
.agents/skills/multi-agent-mux-delegate-job/USER_MANUAL.html
|
.agents/skills/multi-agent-mux-delegate-job/USER_MANUAL.html
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# .env.example — committable template for the multi-agent-mux-* skills
|
# .mam.env.example — committable template for the multi-agent-mux-* skills
|
||||||
#
|
#
|
||||||
# This file is tracked in git and contains NO secrets. To get a working local
|
# This file is tracked in git and contains NO secrets. To get a working local
|
||||||
# config, copy it to `.env` (which is git-ignored) and edit as needed:
|
# config, copy it to `.mam.env` (which is git-ignored) and edit as needed:
|
||||||
#
|
#
|
||||||
# scripts/generate-env.sh # creates .env from this template if absent
|
# scripts/generate-env.sh # creates .mam.env from this template if absent
|
||||||
# # or manually: cp .env.example .env
|
# # or manually: cp .mam.env.example .mam.env
|
||||||
#
|
#
|
||||||
# Every variable below is OPTIONAL. The skills already resolve sane defaults
|
# Every variable below is OPTIONAL. The skills already resolve sane defaults
|
||||||
# (shown after each `#default:` line), so an unset/commented variable just keeps
|
# (shown after each `#default:` line), so an unset/commented variable just keeps
|
||||||
# the built-in behaviour. Uncomment + edit only the ones you want to override.
|
# the built-in behaviour. Uncomment + edit only the ones you want to override.
|
||||||
#
|
#
|
||||||
# SECURITY: never put real secrets in this template. Secret-bearing vars use a
|
# SECURITY: never put real secrets in this template. Secret-bearing vars use a
|
||||||
# `replace_me` placeholder — fill them in only in your local `.env`.
|
# `replace_me` placeholder — fill them in only in your local `.mam.env`.
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# ===========================================================================
|
# ===========================================================================
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
#default: (unset → anonymous)
|
#default: (unset → anonymous)
|
||||||
# MQTT_USERNAME=replace_me
|
# MQTT_USERNAME=replace_me
|
||||||
|
|
||||||
# Broker auth password. SECRET — fill in only in your local .env, never commit.
|
# Broker auth password. SECRET — fill in only in your local .mam.env, never commit.
|
||||||
#default: (unset → anonymous)
|
#default: (unset → anonymous)
|
||||||
# MQTT_PASSWORD=replace_me
|
# MQTT_PASSWORD=replace_me
|
||||||
|
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
# deploy / distribution source (for forks/mirrors)
|
# deploy / distribution source (for forks/mirrors)
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Note: These variables are read from the execution environment by deployment scripts.
|
# Note: These variables are read from the execution environment by deployment scripts.
|
||||||
# Since deploy/install.sh runs before .env exists, you must pass them via export
|
# Since deploy/install.sh runs before .mam.env exists, you must pass them via export
|
||||||
# or prepended variables (e.g. MAM_REPO_URL=... bash deploy/install.sh).
|
# or prepended variables (e.g. MAM_REPO_URL=... bash deploy/install.sh).
|
||||||
# If you run a private mirror, we strongly recommend configuring all three variables.
|
# If you run a private mirror, we strongly recommend configuring all three variables.
|
||||||
|
|
||||||
Reference in New Issue
Block a user