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
QUARKUS_GITHUB_APP_APP_ID:: The numeric app id appearing in the `App ID` field.
82
82
QUARKUS_GITHUB_APP_APP_NAME:: The name of your app is the one appearing in the GitHub URL.
83
83
It is only used to improve usability in dev mode.
84
-
QUARKUS_GITHUB_APP_WEBHOOK_PROXY_URL:: The URL you obtained when you created your Smee.io channel.
84
+
QUARKUS_GITHUB_APP_WEBHOOK_PROXY_URL:: The URL you obtained when you created your Smee.io channel. If you are using services like https://ngrok.com/[ngrok], you don't need to set it.
85
85
QUARKUS_GITHUB_APP_WEBHOOK_SECRET:: The webhook secret you created at the previous step.
86
86
QUARKUS_GITHUB_APP_PRIVATE_KEY:: The content of the private key you generated and downloaded.
87
87
Open the key file with a text editor as key viewers usually only show fingerprints.
@@ -115,7 +115,7 @@ Check the instructions above carefully.
115
115
116
116
== Time to code
117
117
118
-
From now on, you are done with the setup and you can code your GitHub App.
118
+
That's it! You are done with the setup and you can code your GitHub App.
119
119
Sky is the limit.
120
120
121
121
For instance, you can create the following class:
@@ -130,7 +130,7 @@ class CreateComment {
130
130
}
131
131
----
132
132
133
-
From now on, every time you create an issue in your GitHub project, a comment will be added by your GitHub App.
133
+
Every time you create an issue in your GitHub project, a comment will be posted by your GitHub App.
134
134
135
135
In details:
136
136
@@ -143,7 +143,7 @@ In details:
143
143
144
144
You are done developing your first Quarkus GitHub App.
145
145
146
-
Obviously the one we developed is not very useful, but it is a good start and using this framework:
146
+
Obviously the one we developed is not very useful, but it is a good start and by using this framework:
147
147
148
148
* You can listen to all the events currently supported by the https://github.com/hub4j/github-api[Hub4j GitHub API].
149
149
* You have the full power of Quarkus with live coding, easy configuration, dependency injection, native executables and more.
0 commit comments