Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions docs/env-safety.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Environment File Safety Notes

This project uses an `.env` file for local deployment and scripts.

## Keep placeholders empty
These should remain empty in templates and examples:
- `DEPLOYER_PRIVATE_KEY=`
- any production keys or credentials

## Required fields (local runs)
Fill these for local/test usage:
- `PROXY_ADMIN_ADDRESS=...`
- `OWNER_ADDRESS=...`
- `MASTER_MINTER_OWNER_ADDRESS=...`

## Recommended workflow
1. Copy the template to `.env`
2. Fill only test values
3. Confirm `.env` is gitignored
4. Double-check with `git diff` before commit