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.
make
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
# You will need to have your AWS secret key, access key, and a S3 bucket name ready
denv --config
# 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
# 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
# To list all files stored in your bucket
denv --list
# To delete a file from the bucket
denv --del [nickname]
# Example: Delete a file nicknamed "old-config"
denv --del old-config
# 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
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)
# To display help information about all commands
denv --help
# 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! 👋🏻