SuiteCRM - Open source CRM for the world https://www.suitecrm.com
Find a file
Dillon-Brown 587a79613e Add API Platform Framework with Symfony/Flex
This implements the basic structure that will be used for the API and core application.
2021-03-30 19:21:30 +01:00
.github SuiteCRM 8 initial commit 2021-03-30 19:12:01 +01:00
bin Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
config Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
core Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
extentions SuiteCRM 8 initial commit 2021-03-30 19:12:01 +01:00
logs SuiteCRM 8 initial commit 2021-03-30 19:12:01 +01:00
tests Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
.env.dist Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
.env.test.dist Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
.gitignore Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
.htaccess Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
CODE_OF_CONDUCT.md SuiteCRM 8 initial commit 2021-03-30 19:12:01 +01:00
composer.json Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
composer.lock Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
index.php Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
package-lock.json Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
package.json Add Node_modules to the root project directory 2021-03-30 19:20:14 +01:00
phpunit.xml.dist Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00
README.md Change bin/cli to bin/console on readme.md 2021-03-30 19:21:30 +01:00
robots.txt SuiteCRM 8 initial commit 2021-03-30 19:12:01 +01:00
symfony.lock Add API Platform Framework with Symfony/Flex 2021-03-30 19:21:30 +01:00

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 AGPLv3

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

  1. Run composer install in the root directory
  2. Run composer install in legacy directory
  3. Compile legacy theme
  4. Run legacy install process
  5. 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'
  1. 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
  1. Run bin/console orm:schema-tool:update --force
  2. Run bin/console app:rebuild