Add server update scripts and fix repository URLs
All checks were successful
CI / Lint Code (push) Successful in 1m39s
CI / Security Checks (push) Successful in 1m30s
CI / Validate i18n Files (push) Successful in 9s
CI / TypeScript Type Check (push) Successful in 1m49s
CI / Build Project (push) Successful in 1m59s
CI / Run Tests (Node 18) (push) Successful in 2m8s
Auto Tag Release / Create Auto Tag (push) Successful in 2m22s
CI / Run Tests (Node 20) (push) Successful in 2m18s
CI / Test Coverage (push) Successful in 3m13s
Deploy Scripts to S3 / deploy-scripts (push) Successful in 34s
All checks were successful
CI / Lint Code (push) Successful in 1m39s
CI / Security Checks (push) Successful in 1m30s
CI / Validate i18n Files (push) Successful in 9s
CI / TypeScript Type Check (push) Successful in 1m49s
CI / Build Project (push) Successful in 1m59s
CI / Run Tests (Node 18) (push) Successful in 2m8s
Auto Tag Release / Create Auto Tag (push) Successful in 2m22s
CI / Run Tests (Node 20) (push) Successful in 2m18s
CI / Test Coverage (push) Successful in 3m13s
Deploy Scripts to S3 / deploy-scripts (push) Successful in 34s
- Add scripts/server-update.sh for production deployments - Add scripts/dev-update.sh for development updates - Update repository URLs to signal-works/icewatch - Document update scripts in CLAUDE.md 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
047456b1d8
commit
a8f2078e5b
4 changed files with 140 additions and 2 deletions
40
scripts/dev-update.sh
Executable file
40
scripts/dev-update.sh
Executable file
|
@ -0,0 +1,40 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Development Update Script for Ice Watch Application
|
||||
# Quick script for updating during development
|
||||
|
||||
set -e
|
||||
|
||||
# Colors for output
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
NC='\033[0m' # No Color
|
||||
|
||||
log() {
|
||||
echo -e "${GREEN}[$(date +'%Y-%m-%d %H:%M:%S')] $1${NC}"
|
||||
}
|
||||
|
||||
warn() {
|
||||
echo -e "${YELLOW}[$(date +'%Y-%m-%d %H:%M:%S')] $1${NC}"
|
||||
}
|
||||
|
||||
log "Starting development update..."
|
||||
|
||||
# Pull latest changes
|
||||
log "Pulling latest changes from git..."
|
||||
git pull origin main
|
||||
|
||||
# Install dependencies
|
||||
log "Installing/updating dependencies..."
|
||||
npm install
|
||||
|
||||
# Build the application
|
||||
log "Building application..."
|
||||
npm run build
|
||||
|
||||
# Run tests
|
||||
log "Running tests..."
|
||||
npm test
|
||||
|
||||
log "✅ Development update completed successfully!"
|
||||
log "You can now run 'npm start' or 'npm run dev:full' to start the application"
|
Loading…
Add table
Add a link
Reference in a new issue