8 lines
284 B
Bash
Executable file
8 lines
284 B
Bash
Executable file
#!/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
|