Initial commit

This commit is contained in:
NinjaPug
2025-07-06 12:45:37 -04:00
commit d3e59e3786
34 changed files with 17636 additions and 0 deletions

25
start-dev.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
echo "🐳 Docker Registry Browser - Quick Start"
echo "========================================"
# Check if npm is installed
if ! command -v npm &> /dev/null; then
echo "❌ npm is not installed. Please install Node.js and npm first."
exit 1
fi
# Check if Angular CLI is installed globally
if ! command -v ng &> /dev/null; then
echo "📦 Installing Angular CLI globally..."
npm install -g @angular/cli
fi
# Install dependencies
echo "📦 Installing dependencies..."
npm install
# Start the development server
echo "🚀 Starting development server..."
echo "The application will be available at http://localhost:4200"
npm start