pdf-4 / start.bat
fokan's picture
Initial commit with static file serving and inline PDF viewing
623e14e
raw
history blame contribute delete
700 Bytes
@echo off
echo Enhanced DOCX to PDF Converter
echo ==============================
REM Check if Docker is available
docker --version >nul 2>&1
if %errorlevel% neq 0 (
echo Docker is not installed. Please install Docker to run this application.
pause
exit /b 1
)
REM Check if Docker Compose is available
docker-compose --version >nul 2>&1
if %errorlevel% neq 0 (
echo Docker Compose is not installed. Please install Docker Compose to run this application.
pause
exit /b 1
)
echo Building and starting the application...
docker-compose up --build
echo Application is now running at http://localhost:8000
echo API documentation is available at http://localhost:8000/docs
pause