We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am doing the building your first github app guide, and in documentation at section runtime environment the variables have different naming than in code.
export GITHUB_APP_IDENTIFIER=12345 export GITHUB_PRIVATE_KEY= ...
begin GITHUB_APP_ID = ENV.fetch("GITHUB_APP_ID") GITHUB_PRIVATE_KEY = ENV.fetch("GITHUB_APP_PRIVATE_KEY") rescue KeyError $stderr.puts "To run this script, please set the following environment variables:" $stderr.puts "- GITHUB_APP_ID: GitHub App ID" $stderr.puts "- GITHUB_APP_PRIVATE_KEY: GitHub App Private Key" exit 1 end
Decide if the docs have to be changed or the code, if the code has to be changed I will be pleased to make a pull request to fix this.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
Issue
I am doing the building your first github app guide, and in documentation at section runtime environment the variables have different naming than in code.
Vars on Guide
export GITHUB_APP_IDENTIFIER=12345
export GITHUB_PRIVATE_KEY= ...
Vars on Code
Solution
Decide if the docs have to be changed or the code, if the code has to be changed I will be pleased to make a pull request to fix this.
The text was updated successfully, but these errors were encountered: