Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Thank you for your interest in contributing to the OWASP AIBOM Generator! This p

```bash
# Local Python setup
pip install -r requirements.txt
pip install .[dev]
```

## Development Workflow
Expand Down Expand Up @@ -127,7 +127,7 @@ aibom-generator/
│ ├── schemas/ # JSON schemas (CycloneDX, SPDX)
│ └── templates/ # HTML templates
├── tests/ # Unit and integration tests
└── requirements.txt
└── pyproject.toml
```

### Key Concepts
Expand All @@ -141,7 +141,7 @@ aibom-generator/

```bash
# Install test dependencies
pip install -r requirements.txt
pip install .[dev]

# Run all tests
pytest
Expand All @@ -158,7 +158,7 @@ pytest tests/test_validation.py -v
### Local Development (Recommended)

```bash
pip install -r requirements.txt
pip install .[dev]

# Run API server
python -m uvicorn src.main:app --reload --port 7860
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The tool is also listed in the official **[CycloneDX Tool Center](https://cyclon

### 1. Install Dependencies
```bash
pip install -r requirements.txt
pip install .
```

### 2. Run Web Application
Expand Down
26 changes: 0 additions & 26 deletions requirements.txt

This file was deleted.