Manage local work environments
Project description
workenv
A shortcut for jumping between local work environments in bash, and carrying out tasks within them.
Requires Python 3.7+ and bash.
Quick example
Example ~/.workenv_config.yml
:
myproject:
path: /path/to/myproject
source: venv/bin/activate
run:
- nvm use
commands:
database:
run: docker-compose up database
otherproject:
file: /path/to/otherproject
Example usage:
# Jump to /path/to/myproject with the local python virtual environment and nvm
we myproject
# Jump to /path/to/myproject and run the database container
we myproject database
# Bash completion support
we m<tab> d<tab>
There is also support for a _common
project with values applied to all projects, and
for projects which define their own settings locally in ,workenv.yml
files - see docs
below.
Installation
Recommended: Install using pipx:
pipx install workenv
workenv --install
Alternative: Install to a virtual environment with::
cd path/to/installation
python -m venv venv
source venv/bin/activate
pip install workenv
workenv --install
Both of these options will add the command as we
by adding a line to your .bashrc
.
If you would prefer a different command name, you can specify it when installing:
workenv --install workon
Restart your shell session for your change to take effect.
To uninstall, remove the line from .bashrc
, and either uninstall with pipx or delete
your virtual environment.
Configuration
Add the current path as a new project:
we --add projectname
Add the current path as a new command::
we --add projectname command
Open your .workenv_config.yml
for customisation::
we --edit
The top level of the YAML file are the names of the projects.
Values can substitute the project name with {{project.name}}
or {{project.slug}}
.
Special rules
There are two special top-level YAML objects:
_config
Controls settings:
verbose
- iftrue
, show bash commands when running themhistory
- iftrue
, add the commands to history
_common
Common project which can define a common source
, env
, run
and commands
which will be added to all other projects, regardless of whether they define their
own.
The common project cannot specify a path.
Project rules
A project can have the following attributes:
path
The path to set as the current working directory. This will be the first command run.
Example:
myproject:
path: /path/to/foo
Bash equivalent:
cd /path/to/foo
source
Path or paths to call using source
Example:
myproject:
source:
- venv/bin/activate
- .env
Bash equivalent:
source venv/bin/activate
source .env
env
Dict of environment variables to set
Example:
myproject:
env:
COMPOSE_PROJECT_NAME: my_project
Bash equivalent:
export COMPOSE_PROJECT_NAME=my_project
run
Command or list of commands to run
Example:
myproject:
run:
- nvm use
- yvm use
Bash equivalent::
nvm use
yvm use
commands
Dict of Command objects
Example:
myproject:
commands:
database:
run: docker-compose up database
Usage:
we myproject database
Bash equivalent:
docker-compose up database
A command will inherit the path
and env
of its parent project, unless it defines its
own.
It will inherit the source
of its parent project only if it does not specify its own
path or source.
A command can have the same attributes as a project, except it cannot define its own
commands
.
Full example
Putting together all the options above into a sample .workenv_config.yml
:
_config:
verbose: true
history: false
_common:
env:
COMPOSE_PROJECT_NAME: '{{project.slug}}'
PS1: '"\[\e[01;35m\]{{project.slug}}>\[\e[00m\]$PS1"'
commands:
open:
run: xdg-open .
myproject:
path: /path/to/myproject
source:
- venv/bin/activate
- .env
run:
- ./manage.py migrate
- ./manage.py runserver 0:8000
commands:
database:
run: docker compose up database
other:
path: /path/to/other
something-else:
config: /path/to/somethingelse
we myproject
is equivalent to typing:
cd /path/to/myproject
source venv/bin/activate
source .env
export COMPOSE_PROJECT_NAME=myproject
./manage.py migrate
./manage.py runserver 0:8000
we myproject database
is equivalent to typing:
cd /path/to/myproject
source venv/bin/activate
source .env
export COMPOSE_PROJECT_NAME=myproject
docker compose up database
we other
is equivalent to typing:
cd /path/to/other
export COMPOSE_PROJECT_NAME=other
we other open
is equivalent to:
cd /path/to/myproject
export COMPOSE_PROJECT_NAME=other
xdg-open .
and something-else
will be configured in /path/to/somethingelse/.workenv.yml
; path
will be automatically set to that dir:
source:
- venv/bin/activate
- .env
run:
- ./manage.py migrate
- ./manage.py runserver 0:8000
commands:
database:
run: docker compose up database
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file workenv-2.1.1.tar.gz
.
File metadata
- Download URL: workenv-2.1.1.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51ec947ea48e5fb45e293aebef1b001944e59620f7f56ccf72a5dac37edeef14 |
|
MD5 | 0c85956efc3e2562963f02a5d80f028e |
|
BLAKE2b-256 | 6cf2b9b75bb9ea33cc4432412651f0cd92d9255e911fe796833676a2a3c92308 |
File details
Details for the file workenv-2.1.1-py3-none-any.whl
.
File metadata
- Download URL: workenv-2.1.1-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65dc33dda6e2d9e168aad635ea4caaf43ea29608b8d4f77f3dc6efeffd1040bd |
|
MD5 | 399c414187cff3f5a046bcb587c8d00a |
|
BLAKE2b-256 | e9887b2cfdac2ad4544a9604808f543dab7131095393a2100118f0404ef51c87 |