mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00

Update README deployment steps and add deploy:secrets script to package.json update local inference script and README update lockfile reconfigure package scripts for development update test execution pass server tests Update README with revised Bun commands and workspace details remove pnpm package manager designator create bun server
25 lines
718 B
Bash
Executable File
25 lines
718 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Clean up build artifacts and temporary directories
|
|
echo "Cleaning up build artifacts and temporary directories..."
|
|
|
|
# Remove persisted data
|
|
find . -name ".open-gsio" -type d -prune -exec rm -rf {} \;
|
|
|
|
|
|
# Remove node_modules directories
|
|
find . -name "node_modules" -type d -prune -exec rm -rf {} \;
|
|
|
|
# Remove .wrangler directories
|
|
find . -name ".wrangler" -type d -prune -exec rm -rf {} \;
|
|
|
|
# Remove build directories
|
|
find . -name "dist" -type d -prune -exec rm -rf {} \;
|
|
find . -name "build" -type d -prune -exec rm -rf {} \;
|
|
|
|
# Remove coverage directories
|
|
find . -name "coverage" -type d -prune -exec rm -rf {} \;
|
|
find . -name "html" -type d -prune -exec rm -rf {} \;
|
|
|
|
echo "Cleanup complete!"
|