@contiva/envms
v2.0.0
Published
EnvMS CLI - Secure .env file sharing for teams
Readme
@envms/cli
EnvMS CLI - .env File Sharing Tool
Installation
cd cli
npm install
npm run build
npm linkCommands
envms push <filename>
Upload a .env file to the server. Auto-detects the project via git remote get-url origin.
envms push .env.backend
envms push .env.frontendenvms pull
Download a .env file. Auto-detects project or lets you choose interactively.
envms pullenvms list
Show all projects and their .env files.
envms listenvms config
Manage configuration (API URL).
envms config
envms config --set apiUrl=http://localhost:3001/api
envms config --get apiUrlConfiguration
Stored in ~/.envms/config.json:
{
"apiUrl": "http://localhost:3001/api"
}