Initial commit: Werkzeuge-Sammlung

Enthält:
- rdp_client.py: RDP Client mit GUI und Monitor-Auswahl
- rdp.sh: Bash-basierter RDP Client
- teamleader_test/: Network Scanner Fullstack-App
- teamleader_test2/: Network Mapper CLI

Subdirectories mit eigenem Repo wurden ausgeschlossen.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
root
2026-01-28 09:39:24 +01:00
commit cb073786b3
112 changed files with 23543 additions and 0 deletions

45
teamleader_test/start.sh Executable file
View File

@@ -0,0 +1,45 @@
#!/bin/bash
# Quick start script for the network scanner
echo "=================================="
echo "Network Scanner - Quick Start"
echo "=================================="
# Check if virtual environment exists
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python3 -m venv venv
fi
# Activate virtual environment
echo "Activating virtual environment..."
source venv/bin/activate
# Install dependencies
echo "Installing dependencies..."
pip install -q --upgrade pip
pip install -q -r requirements.txt
# Create .env if it doesn't exist
if [ ! -f ".env" ]; then
echo "Creating .env file from example..."
cp .env.example .env
fi
# Create logs directory
mkdir -p logs
echo ""
echo "=================================="
echo "Setup complete!"
echo "=================================="
echo ""
echo "Starting the server..."
echo "API will be available at: http://localhost:8000"
echo "API Docs at: http://localhost:8000/docs"
echo ""
echo "Press Ctrl+C to stop the server"
echo ""
# Run the server
python main.py