Skip to content

Commit f9710ad

Browse files
committed
Rename repo to match renamed guide, and set port to 3000 now that guide uses Smee instead of ngrok
1 parent 2fe7297 commit f9710ad

File tree

6 files changed

+5
-1
lines changed

6 files changed

+5
-1
lines changed

api/ruby/build-your-first-github-app/README.md renamed to api/ruby/building-your-first-github-app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Both commands will run the server at `localhost:4567`.
1414

1515
## History
1616

17-
The original author is @DEGoodmanWilson, and the original location is https://github.com/DEGoodmanWilson/app-boilerplate.
17+
The original author is @DEGoodmanWilson, and the original source is https://github.com/DEGoodmanWilson/app-boilerplate.
1818

1919
The @github/product-docs-ecosystem team ported the code here and added `advanced_server.rb` while editing the guide before publishing it.

api/ruby/build-your-first-github-app/advanced_server.rb renamed to api/ruby/building-your-first-github-app/advanced_server.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
require 'jwt'
77
require 'time' # This is necessary to get the ISO 8601 representation of a Time object
88

9+
set :port, 3000
10+
911
#
1012
#
1113
# This is a customized server for the GitHub App you can build by following

api/ruby/build-your-first-github-app/server.rb renamed to api/ruby/building-your-first-github-app/server.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
require 'jwt'
77
require 'time' # This is necessary to get the ISO 8601 representation of a Time object
88

9+
set :port, 3000
10+
911
#
1012
#
1113
# This is a boilerplate server for your own GitHub App. You can read more about GitHub Apps here:

0 commit comments

Comments
 (0)