Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/an-dr/Env
A Powershell version of Python's venv
https://github.com/an-dr/Env
environment modules powershell shell venv
Last synced: 3 months ago
JSON representation
A Powershell version of Python's venv
- Host: GitHub
- URL: https://github.com/an-dr/Env
- Owner: an-dr
- License: mit
- Created: 2019-12-28T20:34:05.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T19:38:17.000Z (over 1 year ago)
- Last Synced: 2024-05-18T06:32:56.825Z (6 months ago)
- Topics: environment, modules, powershell, shell, venv
- Language: PowerShell
- Homepage:
- Size: 1.17 MB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - an-dr/Env - A Powershell version of Python's venv (PowerShell)
README
# Env
Powershell module using Create and Enable/Disable local modules with a specific format called Environments. Use it if you you want to implement some functionality applicable only for a specific location, e.g. a function `Organize-PhotosByDate` that can be stored in your `Photos` directory.
[@PowershellGallery](https://www.powershellgallery.com/packages/Env)
## Installation
```powershell
Install-Module -Name Env
```## Usage
The module consists of functions:
- Basic operations:
- `New-Environment [Name] [Path]` - *psenv* is used when the name is not provided
- `Enable-Environment [Path]`
- `Disable-Environment [Name]`
- `Get-Environment`
- `Test-DirIsEnv {Dir}`
- Module management:
- `Add-EnvironmentModule {EnvironmentPath} {Module}`
- `Remove-EnvironmentModule {EnvironmentPath} {Module}`
- `Get-EnvironmentModules {EnvironmentPath}``{}` - Mandatory argument
`[]` - Optional argumentThe suggested workflow is following:
1. **Create** an Environment using `New-Environment`
2. **Modify** you environment in the newly created folder as you wish
3. **Activate** the environment when you need it using `Enable-Environment`. You CAN activate several environments with unique names at once
4. **Deactivate** an environment using `Disable-Environment`. To get list of all activate environments use `Get-Environment`## Examples
| How to... | Demo |
|---------------------------------------|-------------------------------------------------------------------|
|...create a new environment | |
|...add a new module to the environment | |
|...enable and disable the environment | |## License
This work is licensed under the terms of the MIT license.
For a copy, see: [LICENSE](LICENSE)
- site: https://agramakov.me
- e-mail: [email protected]## Support
[Buy me a cup of tea](https://paypal.me/4ndr/1eur)
Any amount will motivate me to develop the project. Thanks you!