Skip to main content

Manage local work environments

Project description

workenv

PyPI Tests codecov

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 - if true, show bash commands when running them
  • history - if true, 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

workenv-2.1.2.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

workenv-2.1.2-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file workenv-2.1.2.tar.gz.

File metadata

  • Download URL: workenv-2.1.2.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for workenv-2.1.2.tar.gz
Algorithm Hash digest
SHA256 f20e131570973bfa48ede97723b9b4a765687de53571c5c25fc184e03fbca5e7
MD5 ee54b35d52f0b2284f2a38f5d9daadd4
BLAKE2b-256 84dff8d33746b57002ac95d6267f77fe105707e302f9d3ad6d41586c4f75f0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for workenv-2.1.2.tar.gz:

Publisher: pypi.yml on radiac/workenv

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file workenv-2.1.2-py3-none-any.whl.

File metadata

  • Download URL: workenv-2.1.2-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for workenv-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 83aeab7e9b9a4c9a43d454d94c81e71798596789635b9f1a28d494d61ca3976b
MD5 81cb4489ab546c21971f979f673fb5d5
BLAKE2b-256 fedcb0e11adf4dbc7d186f57d78e4e4697fd188c2e7229d9e2a2cb5b43d8a332

See more details on using hashes here.

Provenance

The following attestation bundles were made for workenv-2.1.2-py3-none-any.whl:

Publisher: pypi.yml on radiac/workenv

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page