Rez launching environment manager
Project description
rezup
Rez launching environment manager
What is this ?
A Rez production virtual environment management tool, which allows safe environment update without any interruption. Plus a convenient virtual environment setup interface.
Install
# python 3+
$ pip install rezup
Quick start
By typing rezup
in terminal, a container named .main
will be created under ~/.rezup
by default (the root location can be changed by setting env var REZUP_ROOT_LOCAL
). Once that done, a vanilla Rez environment is presented by a subprocess and simply typing exit
to escape.
Container
A container is a Rez environment. And each container holds at least one virtual environment folder named by timestamp, which is revision. With that convention, latest version of environment can be provided without affecting existing user.
# Container/Revision structure
\.rezup
|
+ - {container}
| |
: + - {revision} # venv and bin tools lives here
: |
+ - {revision} # the folder is named as timestamp, e.g. 1619780350.588625
|
+ - {revision} # latest one will be provided when calling `rezup use {container}` in terminal
For centralize management in production, one remote container can be defined with env var REZUP_ROOT_REMOTE
. The remote container only contains the venv installation manifest file rezup.toml
, and when being asked, a venv revision will be created locally or re-used if same revision exists in local.
Recipe
To customize the container, you can write a ~/rezup.toml
to tell what should be installed and what environment variable should have. For example :
description = "My rez setup"
[root]
# Where local container is at, supersede $REZUP_ROOT_LOCAL if set
local = false
# Where remote container is at, supersede $REZUP_ROOT_REMOTE if set
remote = false
[rez]
name = "rez"
url = "rez>=2.83" # a PyPi version specifier or repository path
[[extension]]
name = "foo"
url = "~/dev/foo"
edit = true # install this in edit mode (pip --edit)
[[extension]]
name = "bar"
url = "git+git://github.com/get-bar/bar"
isolation = true # additional venv will be created just for this package
python = 2.7 # the python version for the venv of this package
[shared]
# Packages that will be shared across all revisions in this container,
# except extension that has `isolated` set to true.
name = "production"
requires = [
"toml",
"pyside2",
"Qt5.py",
]
[env]
REZ_CONFIG_FILE = "/path/to/rezconfig.py"
Section env
is for setting environment variables when container revision is being used. However, this feature can be hard to debug when something goes wrong, because it's per revision setting and currently no tool for iterating those .toml
between revisions for debug. See Site Customize below for better alternative.
Recipe file name should embed container name (if not default container) so that command rezup add <container>
could pick it up when creating corresponding container, for example:
~/rezup.toml
for container.main
, the default~/rezup.dev.toml
for containerdev
~/rezup.test.toml
for containertest
~/rezup.{name}.toml
for container{name}
Caveat
Rez production install validation will failed, due to Rezup manages entrypoints a bit like pipx, which is different from the setup of Rez install script. So e.g. rez-env
can not nesting context (rez bin tools will not be appended in PATH
), without changing production install validation mechanism.
Commands
use default container .main
$ rezup
use foo
$ rezup use foo
use foo and do job
$ rezup use foo --do {script.bat or "quoted command"}
create & use new venv into default container .main
(recipe ~/rezup.toml
will be used)
$ rezup add
create & use new venv into container foo (recipe ~/rezup.foo.toml
will be used)
$ rezup add foo
create new venv into default remote container
$ rezup add --remote --skip-use
remove container foo
$ rezup drop foo
list containers and info
$ rezup status
Environment Variables
Name | Description |
---|---|
REZUP_ROOT_LOCAL | Local root of all containers and metadata, default is ~/.rezup |
REZUP_ROOT_REMOTE | Remote root of all containers but only recipe file |
REZUP_PROMPT | For customizing shell prompt, optional. |
Shell
Please read launch/README.
Site Customize
You could set a python script file in ~/rezup.toml
like so
# ~/rezup.toml
[init]
script = "/path/to/script.py"
If set, the script will be executed immediately on rezup launch. Which means, all the operations will be affected by that script. This also enabled to provide different setup base on username or other arguments.
Current use case is to load and set environment variables.
# /path/to/script.py
import os
from dotenv import load_dotenv
load_dotenv(os.path.splitext(__file__)[0] + ".env")
Project details
Release history Release notifications | RSS feed
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
Hashes for rezup_api-1.14.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6055f22d7eb703736488f0e82bc9a2545123dd9ac58a9eca33e0ebd34c73557 |
|
MD5 | 5ccdfc994beee24ef5616198dd442fff |
|
BLAKE2b-256 | c0861b8d6a6b0f11d1a65abc08b5160fe282cdffd0772e9b81e75d11bc7bcb1d |