Initial commit

This commit is contained in:
iulian 2025-12-26 00:52:56 +00:00
commit 983cee0320
322 changed files with 57174 additions and 0 deletions

View file

@ -0,0 +1,31 @@
#!/bin/bash
echo "🧹 Cleaning personal information..."
# Remove personal data and sensitive files
rm -rf instance/
rm -rf backups/
rm -rf __pycache__/
rm -rf app/__pycache__/
rm -rf app/*/__pycache__/
rm -rf .pytest_cache/
rm -rf venv/
rm -rf env/
rm -f *.db
rm -f *.sqlite
rm -f *.sqlite3
rm -f .env
rm -f *.log
rm -f *.tar
rm -f *.tar.gz
rm -f make_admin.py
rm -f test_qr.py
rm -f migrate_db.py
rm -f backup*.sh
rm -f create_deployment_package.sh
# Remove uploaded files
rm -rf app/static/uploads/*
touch app/static/uploads/.gitkeep
echo "✅ Cleanup complete!"