File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1+ CLOUDFLARE_EMAIL = ' your_cloudlare_email'
2+ CLOUDFLARE_KEY = ' your_cloudflare_api_key'
3+
Original file line number Diff line number Diff line change 8888
89891 . Fork it
90902 . Create your feature branch (` git checkout -b my-new-feature ` )
91- 3 . Commit your changes (` git commit -am 'Add some feature' ` )
92- 4 . Push to the branch (` git push origin my-new-feature ` )
93- 5 . Create new Pull Request
91+ 3 . Run ` cp .env.example .env ` to create a .env file and populate it with the required environment variables. Edit the new file appropriately
92+ 4 . Commit your changes (` git commit -am 'Add some feature' ` )
93+ 5 . Push to the branch (` git push origin my-new-feature ` )
94+ 6 . Create new Pull Request
9495
9596## See Also
9697
Original file line number Diff line number Diff line change 1919 gem 'simplecov'
2020 gem 'sinatra'
2121 gem 'webmock'
22+ gem 'dotenv'
2223end
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3+ require 'dotenv/load'
4+
35AUTH_EMAIL = ENV [ 'CLOUDFLARE_EMAIL' ]
46AUTH_KEY = ENV [ 'CLOUDFLARE_KEY' ]
57
You can’t perform that action at this time.
0 commit comments