Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kentico/devnet.kentico.com
Here you can register your OS Kentico EMS extension to become visible at Kentico Extension Marketplace.
https://github.com/kentico/devnet.kentico.com
community devnet dotnet extensions kentico kentico-cms kentico-ems marketplace open-source opensource
Last synced: about 17 hours ago
JSON representation
Here you can register your OS Kentico EMS extension to become visible at Kentico Extension Marketplace.
- Host: GitHub
- URL: https://github.com/kentico/devnet.kentico.com
- Owner: Kentico
- License: mit
- Created: 2016-06-02T06:28:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-24T13:15:22.000Z (7 months ago)
- Last Synced: 2024-07-24T15:14:59.864Z (7 months ago)
- Topics: community, devnet, dotnet, extensions, kentico, kentico-cms, kentico-ems, marketplace, open-source, opensource
- Language: JavaScript
- Homepage: https://devnet.kentico.com/marketplace
- Size: 810 KB
- Stars: 6
- Watchers: 27
- Forks: 37
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Submit a New Kentico EMS Extension to DevNet
[![Build Status](https://api.travis-ci.com/Kentico/devnet.kentico.com.svg?branch=master)](https://travis-ci.com/Kentico/devnet.kentico.com)
[![Live](https://img.shields.io/badge/live-brightgreen.svg)](https://devnet.kentico.com/marketplace)
[![Stack Overflow](https://img.shields.io/badge/Stack%20Overflow-ASK%20NOW-FE7A16.svg?logo=stackoverflow&logoColor=white)](https://stackoverflow.com/tags/kentico)Are you developing an open-source project or an extension related to Kentico and want to share it with the developer's community? Submit a Pull Request and share it on the [DevNet marketplace](https://devnet.kentico.com/marketplace)!
Visit [devnet.kentico.com/marketplace](https://devnet.kentico.com/marketplace) to see all available extensions.
## How to qualify
To register your project on DevNet, it needs to satisfy the following requirements. The project needs to:
- be related to any of the Kentico EMS products
- be compatible with the latest major version of the related product
- utilize the open-source approach
- have satisfactory documentation
- contain a README file with:
- a clear description of the project
- download & installation instructions
- (a link to) contribution guidelines
- (a link to) license information
- compatibility information
- information about how the project is supported in case users have questions or find a bug
- (optional, but recommended) a screenshot/gif of the extension
- follow [naming conventions](https://kentico.com/CMSPages/DocLinkMapper.ashx?version=latest&link=module_create_package#Creatinginstallationpackagesformodules-Conventionsfordatabaseobjects) for Kentico objects (if applicable)
- follow [best practices for customization](https://kentico.com/CMSPages/DocLinkMapper.ashx?version=latest&link=customization_best_practices) (if applicable)
- (recommended) be hosted on GitHub> These requirements are automatically checked via [GitHub action](https://github.com/Kentico/devnet.kentico.com/actions/workflows/extensions-check.yml) duirng the pull request pipeline.
## Registering extensions
If your extension meets the above-mentioned criteria, you can create a pull request in this repository. Projects are located in the [`extensions.json`](/marketplace/extensions.json) file. To add your project, create a new entry in the JSON object.
You can propose changes to a file [directly in your browser](https://help.github.com/en/articles/editing-files-in-another-users-repository) without having to clone the repository, doing the changes locally, and committing.
### Example configuration
The [`extensions.json`](/marketplace/extensions.json) file contains details about available extensions. Add a new entry to submit an extension:
```json
[
...{
"name": "Video widget",
"description": "Widget allowing to select and render a YouTube video on site.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/ems-mvc-components/tree/master/Kentico.Widget.Video#video-widget",
"version": "1.0.0-beta1",
"kenticoVersions": [
"12.0.31"
],
"category": "mvc widget",
"tags": [
"mvc",
"youtube",
"video",
"inline-editor"
]
}
]
```| Property | Type | Description |
| ------------- |:-------------:| :----- |
| name | string | Name of the extension (max. 40 characters). |
| description | string | Description of the extension (max. 160 characters). |
| thumbnailUrl1 | string | Url to the thumbnail image describing the extension, or the author (must be jpg/jpeg/png with 100x100px resolution and accessed using secure HTTPS). |
| author | string | Name of the author and/or company (max. 40 characters). |
| sourceUrl | string | URL to access the extension (must use secure HTTPS). |
| version2 | string | Latest version of the extension (must follow the [semantic versioning](https://semver.org)). |
| kenticoVersions3 | array of strings | supported Kentico versions (version entries must follow the [semantic versioning](https://semver.org)). |
| category | string | Category of the extension. Use one of the following: `module`, `webpart`, `website template`, `utility`, `mvc widget`, `mvc section`, `mvc form component`, `mvc inline editor`, `mvc personalization condition type`, `integration`, `other`. |
| tags | array of strings | List of tags you want to apply to the extension. |> 1 You can store the icon in the [/marketplace/assets](/marketplace/assets) folder as a part of the pull request and use URL format as showcased in the [example configuration](#example-configuration). [Kentico icon](/marketplace/assets/kentico-icon.png) is reserved for extensions developed by Kentico.
> 2 It is recommended to start your version numbering from `1.0.0`, but there are no limitations other than the versioning needs to follow the [semantic versioning](https://semver.org). Specified extension version needs to be compatible with the latest specified Kentico version.
> 3 The version of the Kentico EMS with which the extension is compatible. The array is used to keep track of what Kentico versions were supported in previous extension releases. The latest Kentico version needs to be bound with the `version` property. A recommended approach is to keep a table mapping the extension version to Kentico EMS version in the readme file of the project. Use `12.0.29` for Kentico 12 Service pack.
## Extension Ideas/Suggestions
Let the community know what would be valuable for you! Maybe your desired piece of functionality is already out there.
If you have an idea for the MVC widget, MVC inline editor, MVC from component, or any other extension for Kentico EMS, feel free to submit a feature request issue, describe your extension and label it by `extension-idea`.
## Updating extensions
If you release a new version of the extension, submit a pull request with an updated entry in the [`extensions.json`](/marketplace/extensions.json) file and provide a link to the older version in the readme file of the project. We recommend incrementing the major version in `version` when the major version of `kenticoVersion` is incremented.