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

29
start-dev.bat Normal file
View File

@@ -0,0 +1,29 @@
@echo off
echo 🐳 Docker Registry Browser - Quick Start
echo ========================================
REM Check if npm is installed
npm --version >nul 2>&1
if errorlevel 1 (
echo ❌ npm is not installed. Please install Node.js and npm first.
pause
exit /b 1
)
REM Check if Angular CLI is installed globally
ng version >nul 2>&1
if errorlevel 1 (
echo 📦 Installing Angular CLI globally...
npm install -g @angular/cli
)
REM Install dependencies
echo 📦 Installing dependencies...
npm install
REM Start the development server
echo 🚀 Starting development server...
echo The application will be available at http://localhost:4200
npm start
pause