Skip to content

A CLI to help managing secrets and config files

License

Notifications You must be signed in to change notification settings

robertokbr/denv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🥸 Denv, the secret and config files' helper tool

I use Ubuntu for work and my Mac for personal projects. However, I often find myself needing to share numerous environment files, tokens, and config files between my machines, which can be quite tedious. In the past, I used Google Drive, but it was not an ideal solution.

To address this problem, I created denv, a command-line interface (CLI) tool that simplifies the process of uploading and downloading these config files.

🔌 How to install denv - Mac and Linux

make

🪟 How to install denv - Windows

mkdir C:\bin
go build -o denv.exe cmd\denv\main.go
mv denv.exe C:\bin\denv.exe
setx PATH "C:\bin;%PATH%"
# ensure it is right placed
where.exe denv.exe

⚙️ How to configure

# You will need to have your AWS secret key, access key, and a S3 bucket name ready
denv --config

🎹 Commands

Upload files

# To upload a file with a specific nickname
denv --up [filename] --name [nickname]

# To upload a directory (will be zipped)
denv -r --up [directory] --name [nickname]

# Example: Upload .env file with the nickname "myproject"
denv --up .env --name myproject

# Example: Upload a directory with the nickname "myproject"
denv -r --up ./myproject --name myproject

Download files

# To download a file using its nickname
denv --name [nickname]

# To download a file with a custom output filename
denv --name [nickname] --out [output-filename]

# Example: Download a file nicknamed "myproject" and save it as .env.production
denv --name myproject --out .env.production

# Example: Download a directory (will be automatically unzipped)
denv --name myproject --out ./myproject

List files

# To list all files stored in your bucket
denv --list

Delete files

# To delete a file from the bucket
denv --del [nickname]

# Example: Delete a file nicknamed "old-config"
denv --del old-config

Rename files

# To rename a file in the bucket
denv --rename [old-nickname] --name [new-nickname]

# Example: Rename "config-dev" to "config-development"
denv --rename config-dev --name config-development

Tab Completion

Denv supports tab completion for file names when using commands like --del, --rename, and --name. To set up tab completion:

# Set up shell completion for denv commands
denv --setup-completion

# After installation:
# For bash, restart your shell or run:
source ~/.bash_completion

# For zsh, restart your shell or run:
source ~/.zshrc

Once set up, you can use Tab to complete file names:

denv --del [TAB]               # Shows all available files from your bucket
denv --rename config-[TAB]     # Shows bucket files starting with "config-"
denv --up [TAB]                # Shows local files (for upload)

Help

# To display help information about all commands
denv --help

📝 Usage Examples

Complete workflow example:

# Upload your environment file
denv --up .env.development --name dev-env

# Upload a project directory
denv -r --up ./myproject --name myproject

# List all your stored files
denv --list

# Download the file on another machine
denv --name dev-env --out .env.development

# Download the project directory (will be automatically unzipped)
denv --name myproject --out ./myproject

# Rename the file to something more descriptive
denv --rename dev-env --name project-development-env

# When you don't need it anymore
denv --del project-development-env

That is it! 👋🏻

About

A CLI to help managing secrets and config files

Resources

License

Stars

Watchers

Forks

Packages

No packages published