mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 07:50:08 +08:00
SuiteCRM - Open source CRM for the world
https://www.suitecrm.com
- Converted all non-flex bundles with available bundles into Symfony/Flex. - Updated namespaces to more closely match Symfony. - Removed unnecessary dependencies and recipes. - Executed Symfony/Flex recipes to create default configs. - Improved composer.json scripts. |
||
---|---|---|
.github | ||
bin | ||
config | ||
core | ||
extentions | ||
logs | ||
tests | ||
.env.dist | ||
.env.test.dist | ||
.gitignore | ||
.htaccess | ||
angular.json | ||
CODE_OF_CONDUCT.md | ||
codeception.dist.yml | ||
composer.json | ||
composer.lock | ||
index.php | ||
package-lock.json | ||
package.json | ||
README.md | ||
robots.txt | ||
symfony.lock | ||
tslint.json |

SuiteCRM 8.0-alpha
SuiteCRM is the award-winning open-source, enterprise-ready Customer Relationship Management (CRM) software application.
Our vision is to be the most adopted open source enterprise CRM in the world, giving users full control of their data and freedom to own and customise their business solution.
Try out a free fully working SuiteCRM demo available here
License 
SuiteCRM is published under the AGPLv3 license.
Quick Start Quide
System Requirements
Requirement | Version | Database | Version | |
---|---|---|---|---|
PHP | 7.2+ | MariaDB | 10.2+ | |
Angular | 7+ | MySQL | 5.6-5.7 | |
Node.js | 10 | SQL Server | 2012+ | |
Apache | 2.4 |
Installation
- Run
composer install
in the root directory - Run
composer install
in legacy directory - Compile legacy theme
- Run legacy install process
- Create config.yml with config directory with the following strucure
server:
environment: 'develop'
storage:
mysql:
driver: 'pdo_mysql'
host: '{db_host}'
dbname: '{db_name}'
user: '{db_user}'
password: '{db_pass}'
io: 'both'
entity:
namespaces:
core/modules/Users/Config/orm: 'SuiteCRM\Core\Modules\Users\Entity'
- Set permissions
chown -R {user ID}:{web user group} .
find . -type d -exec chmod 0755 {} \;
find . -type f -exec chmod 0644 {} \;
chmod +x bin/console
- Run
bin/console orm:schema-tool:update --force
- Run
bin/console app:rebuild