Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -38,6 +38,29 @@ CodeWatcher automatically:
|
|
38 |
```bash
|
39 |
mkdir -p .github/workflows
|
40 |
curl -o .github/workflows/codewatcher.yml https://raw.githubusercontent.com/your-org/CodeWatcher/main/.github/workflows/codewatcher.yml
|
41 |
-
```
|
42 |
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
```bash
|
39 |
mkdir -p .github/workflows
|
40 |
curl -o .github/workflows/codewatcher.yml https://raw.githubusercontent.com/your-org/CodeWatcher/main/.github/workflows/codewatcher.yml
|
41 |
+
```
|
42 |
|
43 |
+
2. Create the scripts directory:
|
44 |
+
```bash
|
45 |
+
mkdir -p .github/scripts
|
46 |
+
curl -o .github/scripts/codewatcher.py https://raw.githubusercontent.com/your-org/CodeWatcher/main/.github/scripts/codewatcher.py
|
47 |
+
```
|
48 |
+
|
49 |
+
3. Commit and push these changes to your repository:
|
50 |
+
```bash
|
51 |
+
git add .github
|
52 |
+
git commit -m "Add CodeWatcher security review workflow"
|
53 |
+
git push
|
54 |
+
```
|
55 |
+
|
56 |
+
## Configuration
|
57 |
+
|
58 |
+
Customize CodeWatcher by adding these files to your repository root:
|
59 |
+
|
60 |
+
- `.pylintrc` - Pylint configuration
|
61 |
+
- `.bandit` - Bandit configuration
|
62 |
+
- `.semgrep.yml` - Custom Semgrep rules
|
63 |
+
|
64 |
+
## Example Output
|
65 |
+
|
66 |
+

|