Skip to content

Commit

Permalink
Fix env vars (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
vertism authored Mar 11, 2024
1 parent aab9c83 commit f483057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/root_app.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class RootApp < Sinatra::Base
BUILD_ARGS = {
build_date: ENV["BUILD_DATE"],
build_tag: ENV["BUILD_TAG"],
commit_id: ENV["GIT_COMMIT"],
build_date: ENV["APP_BUILD_DATE"],
build_tag: ENV["APP_BUILD_TAG"],
commit_id: ENV["APP_GIT_COMMIT"],
}.freeze

set :public_folder, "public"
Expand Down

0 comments on commit f483057

Please sign in to comment.