You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/main.md
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,4 +123,49 @@ Before you can use the GitHub DevEx Accelerator, you need to set up a GitHub App
123
123
You will also need to create 3 repositories in your organization:
124
124
-**\<onboarding-repository-name\>**: This repository will be used for onboarding. It should contain the issue templates that will be used for onboarding.
125
125
-**\<inventory-repository-name\>**: This repository will be used for inventory. It will contain the inventory metadata.
126
-
-**\<policy-repository-name\>**: This repository will be used for the policies. It will contain the policies metadata.
126
+
-**\<policy-repository-name\>**: This repository will be used for the policies. It will contain the policies metadata.
127
+
128
+
# Running the application
129
+
130
+
You will need a proxy such as [dev tunnels](https://learn.microsoft.com/en-us/azure/developer/dev-tunnels/get-started?tabs=windows) or something such as [Smee](https://smee.io) to route the requests from the GitHub platform to your computer<br/>
131
+
132
+
To run the application locally, you can use the following command in the terminal:
133
+
134
+
If you plan on using dev tunnels:
135
+
136
+
Run the following once:
137
+
```bash
138
+
dotnet dev-certs https --trust
139
+
```
140
+
Then run the application with the HTTPS profile:
141
+
```bash
142
+
dotnet run --launch-profile https
143
+
```
144
+
145
+
If you plan on using a third-party proxy such as Smee, you will need to export the ASP.NET Core development certificate:
0 commit comments