-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcleanup.sh
More file actions
executable file
·37 lines (31 loc) · 984 Bytes
/
cleanup.sh
File metadata and controls
executable file
·37 lines (31 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# Quantum Cryption Cleanup Script
# Removes temporary files and cleans up the project
echo "🧹 Quantum Cryption Cleanup"
echo "=========================="
echo ""
# Remove temporary test files
echo "Removing temporary files..."
rm -f test.txt test.encrypted
# Clean up any build artifacts
echo "Cleaning build artifacts..."
rm -rf .next/
rm -rf out/
# Clean up node modules if requested
if [ "$1" = "--deep" ]; then
echo "Deep cleaning (removing node_modules)..."
rm -rf node_modules/
echo "Run 'npm install' to reinstall dependencies"
fi
echo ""
echo "✅ Cleanup complete!"
echo ""
echo "Available test commands:"
echo " npm run test - Test crypto functionality"
echo " npm run test-app - Test web application"
echo " npm run test-all - Run all tests"
echo ""
echo "Development commands:"
echo " npm run dev - Start development server"
echo " npm run build - Build for production"
echo " npm run lint - Run linting"