From 54e223decc4c3fdb85785c8da3a804e97b75cebc Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Wed, 19 Aug 2026 09:58:42 +0530 Subject: [PATCH] feat: add local development server script and simplify README documentation --- README.md | 57 ------------------------------------------------------- start.sh | 8 ++++++++ 2 files changed, 8 insertions(+), 57 deletions(-) create mode 100755 start.sh diff --git a/README.md b/README.md index 583a62a6c18..c030e884bba 100644 --- a/README.md +++ b/README.md @@ -219,60 +219,3 @@ See the [ChangeLog](https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog) See exact requirements on the [Wiki](https://wiki.dolibarr.org/index.php/Prerequisites) -### Extending - -Dolibarr can be extended with a lot of other external applications or modules from third-party developers available at the [DoliStore](https://www.dolistore.com). - - -## WHAT DOLIBARR CAN'T DO YET - -These are features that Dolibarr does **not** yet fully support: - -- Tasks dependencies in projects -- Payroll module -- Native embedded Webmail, but you can send email to contacts in Dolibarr with e.g. offers, invoices, etc. -- Dolibarr can't do coffee (yet) - - -## DOCUMENTATION - -Administrator, user, developer and translator's documentation are available along with other community resources in the [Wiki](https://wiki.dolibarr.org). - - -## CONTRIBUTING AND RELEASE PROCESS - -This project exists thanks to all the people who contribute. -Please read the instructions on how to contribute (report a bug/error, a feature request, send code, ...) [[Contributing](https://github.com/Dolibarr/dolibarr/blob/develop/.github/CONTRIBUTING.md)] - -A View on Contributors: - -[![Dolibarr](https://opencollective.com/dolibarr/contributors.svg?width=890&button=false)](https://github.com/Dolibarr/dolibarr/graphs/contributors) - -The release process is described into the file dev/build/makepack-howto.md - - -## CREDITS - -Dolibarr is the work of many contributors over the years and uses some fine PHP libraries. - -See [COPYRIGHT](https://github.com/Dolibarr/dolibarr/blob/develop/COPYRIGHT) file. - - -## NEWS AND SOCIAL NETWORKS - -Follow Dolibarr project on: - -- [LinkedIn](https://www.linkedin.com/company/association-dolibarr) -- [Mastodon](https://pouet.chapril.org/@dolibarr) -- [BlueSky](https://bsky.app/profile/dolibarr.org) -- [Threads](https://www.threads.net/@dolibarr) -- [X](https://x.com/dolibarr) -- [Facebook](https://www.facebook.com/dolibarr) -- [Reddit](https://www.reddit.com/r/Dolibarr_ERP_CRM/) -- [YouTube](https://www.youtube.com/user/DolibarrERPCRM) -- [GitHub](https://github.com/Dolibarr/dolibarr) - - -## Sponsors - -Support this project by becoming a sponsor. Your logo will show up here. 🙏 [[Become a sponsor/backer](https://opencollective.com/dolibarr#backer)] diff --git a/start.sh b/start.sh new file mode 100755 index 00000000000..5dbb8a85eed --- /dev/null +++ b/start.sh @@ -0,0 +1,8 @@ +#!/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