Sync .env files across machines. Pull from vault.
npm install -g @arc2898/envsync# Push a .env to the sync store
envsync push .env
# Pull latest to current directory
envsync pull
# Pull to a specific file
envsync pull my-prod.env
# Show diff between local and remote
envsync diff .env
# List all synced env files
envsync list- Stores envs locally at
~/.envsync/store.json - For vault integration, set
ENVSYNC_VAULT_URLandENVSYNC_TOKEN - Each env is stored with a hash for quick comparison
MIT