https://github.com/reljicd/bash-utils
Various bash util scripts
https://github.com/reljicd/bash-utils
Last synced: 3 months ago
JSON representation
Various bash util scripts
- Host: GitHub
- URL: https://github.com/reljicd/bash-utils
- Owner: reljicd
- License: apache-2.0
- Created: 2022-11-27T20:58:19.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-27T21:35:46.000Z (about 3 years ago)
- Last Synced: 2024-12-28T13:17:43.905Z (about 1 year ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bash-utils
Various bash util scripts
### Python Utils
#### Activate Python venv and run Python script
```bash
$> chmod +x python/activate_venv_and_run_python.sh
$> python/activate_venv_and_run_python.sh ${SERVICE_NAME} ${METHOD_NAME} [parameters...]
```
#### Run Python scripts using Docker
```bash
$> chmod +x python/run_docker.sh
$> python/run_docker.sh ${SERVICE_NAME} ${METHOD_NAME} [parameters...]
```
#### Run Python tests using Docker Compose
```bash
$> chmod +x python/run_tests_using_docker_compose.sh
$> python/run_tests_using_docker_compose.sh
```