This project contains the wizard allowing to download configuration packages from the partner repository
To use the project you need to do the following (more details in the next sections):
- Create Azure Storage Container and upload the Rapid Start configuration packages to it.
- Create a configuration json file in the root of the container
- Insert setup of the
Partner Configuration Setup
page. - Run
Partner Configuration Wizard
and choose the package to apply.
To create Azure Storage Container you need to do the following:
- Go to the Azure Portal and login.
- Click on the
Storage accounts
and then click on theAdd
button. - Fill in the required fields and click on the
Review + create
button. - Click on the
Create
button. - Click on the created storage account and then click on the
Containers
button. - Create a new container with the custom name (for example
confpacks
)
To upload Rapid Start configuration packages you need to do the following:
- Export Rapid start configuration packages from the Business Central.
- Upload Rapid Start configuration packages to the created container.
To create configuration json file you need to do the following:
- Create a new json file with custom name
- Add content to the file in schema as below
{
"config":[
{
"Code": "Starter-US",
"Name": "STARTER-US",
"Description": "Contains Base Tables",
"Language": "ENU"
},
{
"Code": "Manu-US",
"Name": "MANU-US",
"Description": "Contains Manufacturing Tables",
"Language": "ENU"
}
]
}
- Upload the file to the created container
Notes:
- For each configuration package you need to create a new object in the
config
array. - Name property should be the same as name of the configuration package file create in previous point without .rapidstart extension.
- Code should be unique for each configuration package.
- Description and Language are used only for information.
- Open in Business Central page
Partner Configuration Setup
- Set Azure Account Name, Azure Account Key and Azure Container Name fields. You can find those information in the Azure Portal.
- You can manually set Setup List File with a json file created in previous point or you can use the
Get Setup List File
action to download the file from the Azure Storage Container.
To run Partner Configuration Wizard you need to do the following:
- Find the
Partner Configuration
. - Choose the configuration package to apply and click on the
Import
orImport & Close
button.
After action the configuration package will be applied to the Business Central.
All contributions are welcome.
Ths project is open for contributions. If you have any ideas, just open an issue and describe your idea or create a pull request.
- Create a configuration file directly in the Business Central and upload it to the Azure Storage Container.
- Upload Rapid Start configuration packages to the Azure Storage Container directly from the Business Central.