Skip to content

Commit a4ad940

Browse files
fix: minor changes
1 parent ed587ec commit a4ad940

2 files changed

Lines changed: 0 additions & 23 deletions

File tree

.github/Contributor_Guide/Project_Tour.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ simple_firewall/
4444
│ └── attack_simulator.py # Attack simulation for testing
4545
├── main.py # 🚀 Modern CLI entry point (NEW!)
4646
├── firewall_config.json # ⚙️ Configuration file
47-
├── run.py # 🔄 Legacy launcher (redirects to main.py)
4847
├── install.sh # 📦 Installation script
4948
├── requirements.txt # 📋 Python dependencies
5049
├── package.json # 📦 Node.js dependencies (dev tools)
@@ -295,19 +294,6 @@ Attack simulation script for testing firewall effectiveness:
295294
# 4. High Connection Rate Testing
296295
```
297296

298-
### 🎯 `run.py` - Legacy Launcher Script
299-
300-
Backwards compatibility launcher that redirects to main.py:
301-
```python
302-
#!/usr/bin/env python3
303-
"""Legacy launcher - redirects to main.py"""
304-
import subprocess
305-
import sys
306-
307-
if __name__ == "__main__":
308-
subprocess.run([sys.executable, "main.py"] + sys.argv[1:])
309-
```
310-
311297

312298
### 📦 `install.sh` - Installation Script
313299

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,6 @@ python3 main.py --create-config
9595
sudo python3 main.py -v
9696
```
9797

98-
### Legacy Commands (Deprecated)
99-
100-
```bash
101-
# Old run.py launcher (redirects to main.py)
102-
python3 run.py
103-
104-
# Old direct firewall (moved to simple_firewall_old.py)
105-
# sudo python3 simple_firewall.py # NO LONGER AVAILABLE
106-
```
10798

10899

109100
## Configuration

0 commit comments

Comments
 (0)