This commit is contained in:
Local Server
2025-12-19 20:44:46 -06:00
parent 701f799cde
commit e4b3de4a46
113 changed files with 16673 additions and 2174 deletions

47
scripts/README.md Normal file
View File

@@ -0,0 +1,47 @@
# Scripts Directory
This folder contains all automation scripts for development, deployment, and server management.
## Development Scripts
- **dev-start.sh** - Start the development server with auto-reload
- **check-assets.sh** - Verify all assets are properly linked
- **local-commit.sh** - Quick local git commit
## Deployment Scripts
- **deploy-website.sh** - Deploy website updates to production
- **deploy-admin-updates.sh** - Deploy admin panel updates
- **pre-deployment-check.sh** - Run pre-deployment checks
## Server Management
- **manage-server.sh** - Server management utilities
- **check-service.sh** - Check service status
- **setup-service.sh** - Setup systemd service
- **quick-status.sh** - Quick server status check
- **pre-start.sh** - Pre-startup checks
## Testing & Verification
- **test-instant-changes.sh** - Test instant change deployment
- **verify-admin-fix.sh** - Verify admin panel fixes
- **verify-localhost.sh** - Verify localhost configuration
## Windows Scripts
- **DISABLE_WINDOWS_LOCALHOST.ps1** - PowerShell script for Windows localhost config
## Usage
All scripts should be run from the project root directory:
```bash
./scripts/dev-start.sh
```
Make sure scripts have execute permissions:
```bash
chmod +x scripts/*.sh
```