Install binary
bash
cargo install cdwe
Init your shell
bash
cdwe init zsh # zsh shells
cdwe init bash # bash shells
cdwe init fish # fish shells
Reload your shell and start using! ```bash
cdwe /Users/synoet/dev/projecta echo $IS_DEBUG
cdwe .. echo $IS_DEBUG ```
You can explicitly define environment variables in two ways:
toml
[[directory]]
path = "/Users/synoet/dev/project"
vars = {"IS_DEBUG" = "true", "IS_PROD" = "false"}
path
: the path to your directory you are configuring
vars
: a map of env vars to set
By default env vars will also be loaded in subdirectories, in this example /Users/synoet/dev/project/src
would also have IS_DEBUG
and IS_PROD
set
OR
toml
[[env_variable]]
name = "IS_DEBUG"
value = "true"
dirs = [
"/Users/synoet/dev/project1",
"/Users/synoet/dev/project2"
]
Here you can define one env var for multiple directories.
name
: Is the key of the env variable
value
: is the value of the env variable
dirs
: Is a list of directories to load this env var for
The directory object also takes a load_from
field
toml
[[directory]]
path = "/Users/synoet/dev/project"
vars = {"IS_DEBUG" = "true", "IS_PROD" = "false"}
load_from = [".env"]
load_from
: List of .env file names to auto load in, these should be relative to the dir defined in path.
In this example we would try to load in a env file at /Users/synoet/dev/project/.env
Unlike per directory env vars, env files are only loaded in the exact matching directory not in subdirectories
OR
Similarly we can define a single env file for multiple directories
toml
[[env_file]]
load_from = ".env"
dirs = [
"/Users/synoet/dev/macro/macro-site/astro",
"/Users/synoet/dev/macro/app-monorepo/packages/app"
]
Here we can define aliases that will be set and unset as functions only in specific directories
toml
[[directory]]
path = "/Users/synoet/dev/project"
vars = {"IS_DEBUG" = "true", "IS_PROD" = "false"}
load_from = [".env"]
aliases = [
{ name = "build", commands = ["yarn cache clean", "yarn build", "yarn package"] }
]
Here we define a build
alias which will live only in /User/synoet/dev/project/*
and all subdirectories.
aliases
: a list of aliases to define for the directory
OR
toml
[[alias]]
name = "build"
commands = ["yarn cache clean", "yarn build", "yarn package"]
dirs = [
"/Users/synoet/dev/projecta",
"/Users/synoet/dev/projectb"
]
Here you are defining the same alias for multiple directories.
Here we can define commands that will automatically run anytime we cd into a specific directory
toml
[[directory]]
path = "/Users/synoet/dev/project"
vars = {"IS_DEBUG" = "true", "IS_PROD" = "false"}
load_from = [".env"]
aliases = [
{ name = "build", commands = ["yarn cache clean", "yarn build", "yarn package"] }
]
run = ["git fetch -p", "ls"]
In this case every time we enter /Users/synoet/dev/project
cdwe will automatically run git fetch -p
and ls
Auto Commands also require an exact match and don't propogate to subdirectories
OR
toml
[[command]]
run = "git fetch -p"
dirs = [
"/Users/synoet/dev/cdwe",
"/Users/synoet/dev/macro/macro-api"
]
```toml [[directory]] path = "/Users/synoet/dev/something" # the path to the directory vars = {"ISDEBUG" = "true", "ISPROD" = "false"} # set environment variables load_from = [".env", ".env.local"] # will source environment variables from these files
[[directory]] path = "/Users/synoet/dev" # the path to the directory load_from = [".env"] # will source environment variables from these files ```
cd_command
in the config section of the ~/cdwe.toml
.
```toml
[config]
cd_command = "z" # if you are using zoxide```
cdwe-reload
```bash
cdwe-reload # reloads your configzsh #reload your shell, use bash or fish if you use those.
```
bash
cdwe-remove #removes the
source zsh #reload your shell, use bash or fish if you use those. ```
bash
cargo uninstall cdwe