https://github.com/bechbd/sbom-test-project
sbom-test-project
https://github.com/bechbd/sbom-test-project
Last synced: about 1 year ago
JSON representation
sbom-test-project
- Host: GitHub
- URL: https://github.com/bechbd/sbom-test-project
- Owner: bechbd
- License: apache-2.0
- Created: 2024-02-26T21:03:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-14T01:37:44.000Z (over 2 years ago)
- Last Synced: 2024-03-14T16:50:22.493Z (over 2 years ago)
- Language: Python
- Size: 211 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sbom-project
## Getting Started
To get started, first install the required dependencies:
```bash
poetry install
```
Note that this project uses [poetry](https://python-poetry.org/) for dependency management. If you don't have poetry installed, you can install it following the instructions [here](https://python-poetry.org/docs/#installation).
## Development
If you don't want to keep typing `poetry run` before every command, you can run the following command to enter a shell with the correct environment:
```bash
poetry shell
```
The samples below assume you are in a poetry shell.
### Running Pipelines
To run a pipeline locally, use the following command:
```bash
nodestream run $PIPELINE_NAME
```
### Running Tests
To run tests, use the following command:
```bash
pytest
```