Skip to content

rabiibrahimi/espo-ext-template

Repository files navigation

Template repository for EspoCRM extensions

Create a repository for your extension from this template.

Preparing repository

Run:

php init.php

It will ask to enter an extension name and some other information.

After that, you can remove init.php file from your respository. Commit changes and proceed to configuration & building.

Configuration

Create config.json file in the root directory. You can copy config-default.json and rename it to config.json.

When reading, this config will be merged with config-default.json. You can override default parameters in the created config.

Parameters:

  • espocrm.repository - from what repository to fetch EspoCRM;
  • espocrm.branch - what branch to fetch (stable is set by default); you can specify version number instead (e.g. 5.9.2);
  • database - credentials of the dev database;
  • install.siteUrl - site url of the dev instance;
  • install.defaultOwner - a webserver owner (important to be set right);
  • install.defaultGroup - a webserver group (important to be set right).

Config for EspoCRM instance

You can override EspoCRM config. Create config.php in the root directory of the repository. This file will be applied after EspoCRM intallation (when building).

Example:

<?php
return [
    'useCacheInDeveloperMode' => true,
];

Building

After building, EspoCRM instance with installed extension will be available at site directory. You will be able to access it with credentials:

  • Username: admin
  • Password: 1

Preparation

  1. You need to have node, npm, composer installed.
  2. Run npm install.
  3. Create a database. The database name is set in the config file.

Full EspoCRM instance building

It will download EspoCRM (from the repository specified in the config), then build and install it. Then it will install the extension.

Command:

node build --all

Note: It will remove a previously installed EspoCRM instance, but keep the database intact.

Copying extension files to EspoCRM instance

You need to run this command every time you make changes in src directory and you want to try these changes on Espo instance.

Command:

node build --copy

Running after-install script

AfterInstall.php will be applied for EspoCRM instance.

Command:

node build --after-install

Extension package building

Command:

node build --extension

The package will be created in build directory.

Note: The version number is taken from package.json.

Installing addition extensions

If your extension requires other extensions, there is a way to install them automatically while building the instance.

Necessary steps:

  1. Add the current EspoCRM version to the config.php:
<?php
return [
    'version' => '6.2.0',
];
  1. Create the extensions directory in the root directory of your repository.
  2. Put needed extensions (e.g. my-extension-1.0.0.zip) in this directory.

Extensions will be installed automatically after running the command node build --all or node build --install.

Development workflow

  1. Do development in src dir.
  2. Run node build --copy.
  3. Test changes in EspoCRM instance at site dir.

Using entity manager to create entities

You can block out new entity types right in Espo (using Entity Manager) and then copy generated custom files (site/custom dir) to the repository (src dir) using copy-custom.js script.

  1. Create entity types, fields, layouts, relationships in Espo (it should be available in site dir after building).
  2. Run node copy-custom.js. It will copy all files from site/custom to src/files/application/Espo/Modules/{ModuleName} and apply needed modifications to files.
  3. Remove files from site/custom.
  4. Run node build --copy. It will copy files from the repository to Espo build (site/application/Espo/Modules/{ModuleName} dir).
  5. Clear cache in Espo.
  6. Test in Espo.
  7. Commit changes.
  8. Profit.

You can remove copy-custom.js from the repository if you don't plan to use it future.

Using composer in extension

If your extension requires to use additional libraries, they can be installed by the composer:

  1. Create a file src/files/application/Espo/Modules/{ModuleName}/composer.json with your dependencies.
  2. Once you run node build --all or node build --composer-install, composer dependencies will be automatically installed.
  3. Create a file src/files/application/Espo/Modules/{ModuleName}/Resources/autoload.json.

Note: the extension build will contain only the vendor directory without composer.json file.

The autoload.json file defines paths for namespaces:

{
    "psr-4": {
        "LibraryNamespace\\": "application/Espo/Modules/{ModuleName}/vendor/<vendor-name>/<library-name>/path/to/src"
    }
}

Versioning

The version number is stored in package.json and package-lock.json.

Bumping version:

npm version patch
npm version minor
npm version major

Tests

Prepare:

  1. node build --copy
  2. cd site
  3. grunt test

Unit

Command to run unit tests:

vendor/bin/phpunit tests/unit/Espo/Modules/{@name}

Integration

You need to create a config file tests/integration/config.php:

<?php

return [
    'database' => [
        'driver' => 'pdo_mysql',
        'host' => 'localhost',
        'charset' => 'utf8mb4',
        'dbname' => 'TEST_DB_NAME',
        'user' => 'YOUR_DB_USER',
        'password' => 'YOUR_DB_PASSWORD',
    ],
];

The file should exist before you run node build --copy.

Command to run integration tests:

vendor/bin/phpunit tests/integration/Espo/Modules/{@name}

Configuring IDE

You need to set the following paths to be ignored in your IDE:

  • build
  • site/build
  • site/application/Espo/Modules/{@name}
  • site/tests/unit/Espo/Modules/{@name}
  • site/tests/integration/Espo/Modules/{@name}

License

Change a license in LICENSE file. The current license is intended for scripts of this repository. It's not supposed to be used for code of your extension.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published