dolibarr/start.sh

9 lines
284 B
Bash
Raw Normal View History

#!/bin/bash
# Start Dolibarr using the PHP built-in web server
echo "Starting Dolibarr local development server on http://localhost:8000 ..."
echo "Make sure your database is running and configured correctly."
echo "Press Ctrl+C to stop the server."
php -S localhost:8000 -t htdocs