|
| 1 | +# Getting Started with Skyline DataMiner DevOps |
| 2 | + |
| 3 | +Welcome to the Skyline DataMiner DevOps environment! |
| 4 | +This quick-start guide will help you get up and running. It was auto-generated based on the initial project setup during creation. |
| 5 | +For more details and comprehensive instructions, please visit [DataMiner Docs](https://docs.dataminer.services/). |
| 6 | + |
| 7 | +## Creating a DataMiner Application Package |
| 8 | + |
| 9 | +This project was configured to create a `.dmapp` file every time you build the project. |
| 10 | +When you compile or build the project, you will find the generated `.dmapp` in the standard output folder, typically the `bin` folder of your project. |
| 11 | + |
| 12 | +When you publish the project (see Publishing topic below), a corresponding item will be created in the online DataMiner Catalog. |
| 13 | + |
| 14 | +## Migrating to a Multi-Artifact DataMiner Application Package |
| 15 | + |
| 16 | +If you need to combine additional components in your `.dmapp` file, you should: |
| 17 | + |
| 18 | +1. Open the `FAN_MyAdHocDataSource.csproj` file and ensure the `<GenerateDataminerPackage>` property is set to `False`. |
| 19 | + |
| 20 | +2. Right-click your solution and select **Add > New Project**. |
| 21 | + |
| 22 | +3. Select the **Skyline DataMiner Package Project** template. |
| 23 | + |
| 24 | +Follow the provided **Getting Started** guide in the new project for further instructions. |
| 25 | + |
| 26 | +## Publishing to the Catalog |
| 27 | + |
| 28 | +This project was created with support for publishing to the DataMiner Catalog. |
| 29 | +You can publish your artifact either manually via the Visual Studio IDE or by setting up a CI/CD workflow. |
| 30 | + |
| 31 | +## Publishing to the Catalog with Complete CI/CD Workflow |
| 32 | + |
| 33 | +This project includes a comprehensive GitHub workflow that adheres to Skyline Communications' quality standards, including static code analysis, custom validation, and unit testing. |
| 34 | + |
| 35 | +### Prerequisite |
| 36 | + |
| 37 | +You need a **SonarCloud Organization**. If you don’t have one, you can create it [here](https://sonarcloud.io/create-organization). |
| 38 | + |
| 39 | +### Steps |
| 40 | + |
| 41 | +1. Create a GitHub repository by going to **Git > Create Git Repository**, selecting GitHub, and filling in the wizard before clicking **Create and Push**. |
| 42 | + |
| 43 | +1. In GitHub, go to the *Actions* tab. |
| 44 | + |
| 45 | +1. Click the workflow run that failed (usually called *Add project files*). |
| 46 | + |
| 47 | +1. Click the "build" step that failed and read the failing error. |
| 48 | + |
| 49 | + ``` text |
| 50 | + Error: DATAMINER_TOKEN is not set. Release not possible! |
| 51 | + Please create or re-use an admin.dataminer.services token by visiting: https://admin.dataminer.services/. |
| 52 | + Navigate to the right Organization then go to Keys and create/find a key with permissions to Register Catalog Items. |
| 53 | + Copy the value of the token. |
| 54 | + Then set a DATAMINER_TOKEN secret in your repository settings: **Dynamic Link** |
| 55 | + ``` |
| 56 | + |
| 57 | + You can use the links from the actual error to better address the next couple of steps. |
| 58 | + |
| 59 | +1. Obtain an **Organization Key** from [admin.dataminer.services](https://admin.dataminer.services/) with the following scopes: |
| 60 | + - **Register Catalog items** |
| 61 | + - **Read Catalog items** |
| 62 | + |
| 63 | +1. Add the key as a secret in your GitHub repository, by navigating to **Settings > Secrets and variables > Actions** and creating secrets or variables with the required names. |
| 64 | + |
| 65 | +1. Re-run the workflow. |
| 66 | + |
| 67 | +The following secrets and variables will have been added to your repository after all issues are resolved: |
| 68 | + |
| 69 | +| Name | Type | Description | Setup Guide | |
| 70 | +|-----------------|---------|----------------------------------------------------|---------------------------------------------------------------------------------------------| |
| 71 | +| `DATAMINER_TOKEN` | Secret | Organization key for publishing to the Catalog | Obtain from [admin.dataminer.services](https://admin.dataminer.services/) and add it as a secret. | |
| 72 | +| `SONAR_TOKEN` | Secret | Token for SonarCloud authentication | Obtain from [SonarCloud Security](https://sonarcloud.io/account/security) and add it as a secret. | |
| 73 | +| `SONAR_NAME` | Variable | SonarCloud project ID | Visit [SonarCloud](https://sonarcloud.io/projects/create), copy the project ID, and add it as a variable. | |
| 74 | + |
| 75 | +### Releasing a Version |
| 76 | + |
| 77 | +1. Navigate to the **<> Code** tab in your GitHub repository. |
| 78 | + |
| 79 | +1. In the menu on the right, select **Releases**. |
| 80 | + |
| 81 | +1. Create a new release, select the desired version as a **tag**, and provide a title and description. |
| 82 | + |
| 83 | +> [!NOTE] |
| 84 | +> The description will be visible in the DataMiner Catalog. |
0 commit comments