70d0e5d772 | ||
---|---|---|
Sia.Data.Incident.Tests | ||
domain@88189e9d1c | ||
src | ||
test/Sia.Gateway.Tests | ||
.gitignore | ||
.gitmodules | ||
LICENSE | ||
README.md | ||
Sia.Gateway.sln |
README.md
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
//Todo: figure out what else should be in this file. #Cloning this repository
This repository has the https://github.com/Azure/Sia-Root git repository embedded as a submodule. Once you've cloned this repository, use your git client to navigate to "domain" subdirectory, and run
- git submodule init
- git submodule update
This will clone the submodule repository. For more information on submodules, see the Git Tools Documentation for Submodules
#Setting Up Your Development Environment
This Gateway is intended to be extended by Sia microservices in other code repositories.
In order to test functionality of the gateway on your local machine:
- For each 'Service' in appsettings.Development.json:
- Clone the associated repository (Example: Incident is associated with the SiaManagement repository)
- Change the default startup from the project name to IIS Express and start
- You will need to have a separate visual studio instance open for each service the gateway will interact with. (If you find a good way to do this without having visual studio open, please let the maintainers of this project know)
- Validate that the localhost port the service is running on matches its configuration in appsettings.Development.json. You can find IIS Express information by right clicking the IIS Express icon in your system tray.
- Get appropriate Secrets for authentication
- Right click on the Sia.Gateway project and select "Manage user secrets"
- Open usersecrets.template.json to use as a template for your usersecrets json file
- You will need these configuration values:
- Your AAD instance (the default is correct for the vast majority of scenarios)
- Your AAD tenant
- Your Key Vault vault name
- Your ApplicationInsights instrumentation key name
- The secret that is used to authenticate to azure key vault for the gateway (ClientSecret)
- This secret can be found in the azure portal in the AAD App Registration for your Gateway instance
- Start the gateway
#Ticketing System Connectors
Sia can be configured to to work with a separate ticketing system, either by leveraging a proxy API or by direct access with a custom connector.
Data from connected ticketing systems can be used to generate events and/or present additional information and context on the UI.
Sia will still function without a connected ticketing system, and will persist limited ticket data in the Incident database (see Sia.Data.Incident\Models\Ticket.cs)
For additional information on use, configuration, and creation of ticketing system connectors, see Sia.Connectors.Tickets\README.md