# groupoffice **Repository Path**: mirrors/groupoffice ## Basic Information - **Project Name**: groupoffice - **Description**: 一款强大的企业办公软件,主要功能包括:日程、客户关系管理、电子邮件、文件共享、项目管理以及数据同步等 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/groupoffice - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2020-06-02 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Group Office groupware and CRM Group-Office is an enterprise CRM and groupware tool. Share projects, calendars, files and e-mail online with co-workers and clients. Easy to use and fully customizable. # Install If you're not a developer and you wish to use Group-Office please visit: https://www.group-office.com/documentation.html # Developers ## Docker ### Production Our Docker image can be found here: https://github.com/Intermesh/docker-groupoffice ### Development If you'd like to get started with Group-Office development please have a look at our docker compose project. You can get started in minutes with just a few commands: https://github.com/Intermesh/docker-groupoffice-development ## Manual from source 1. Install regularly like on https://groupoffice.readthedocs.io/en/latest/install/install.html 2. If using the Debian packages then disable the APT repository to avoid overwritten source on update. 3. Install PHP Composer, SASS and npm. 4. Clone this repository including submodules: ``` git clone --recurse-submodules https://github.com/intermesh/groupoffice ``` 5. Run ./scripts/build.sh to compile SASS, Install composer packages and build the GOUI typescript modules. ``` ./scripts/build.sh ``` 6. Symlink the original source directory to your development files. For example: Move Debian package folder away: ``` mv /usr/share/groupoffice /usr/share/groupofficebak ``` Create symlink to master clone: ``` ln -s ~/Projects/groupoffice/master/www /usr/share/groupoffice ``` 7. Launch it in the web browser and follow the installer's instructions. Happy coding!