Create Python venv manager #45
Labels
feature-request
Request for functionality that has not already been implemented
tooling
Related to tools and utilities for the management of the project
webqueue2 uses a python virtual environment to manage its python dependencies separate of the system it is running on. This environment is not committed to version control and must be created on new instances of the environment manually. It must also be deleted manually. If it needs to be reset, the removal and creation need to be chained together.
Create venv:
Delete venv:
cd api rm -rf venv
Creating a tool to automate this would simplify the setup and reset of the development environment. Assuming the tool is called venv-manager, potential syntax could be:
Create venv:
Delete venv:
Reset venv:
Assuming this tool behaved like the above description and were stored in a /utils directory, it could be integrated with npm like this:
Create venv:
Delete venv:
Reset venv:
The text was updated successfully, but these errors were encountered: