Directories
Workspace
Path where all application data is stored.
This is a special variable that can be overriden at runtime and is dynamic if unset
| System | Path |
|---|---|
| Linux | ~/.local/share/Vendor |
| Windows | C:\Users\User\AppData\Local\Vendor |
| MacOS | ~/Library/Application Support/Vendor |
| Custom | $WORKSPACE |
All .env files where the project is run are loaded
custom.env
WORKSPACE=/custom/workspace/path
Common
Subdirectory of the Workspace to use for all Pyaket files.
project.directories.common = "Pyaket"
pyaket dir --common "Pyaket" (...)
[directories]
common = "Pyaket"
Versions
Subdirectory of the Workspace to install virtual environments.
project.directories.versions = "Versions"
pyaket dir --versions "Versions" (...)
[directories]
versions = "Versions"
| System | Path |
|---|---|
| Linux | ~/.local/share/Vendor/Versions |
| Windows | C:\Users\User\AppData\Local\Vendor\Versions |
| MacOS | ~/Library/Application Support/Vendor/Versions |
| Custom | $WORKSPACE/Versions |