Sha256: 0798690b87bd16d4bf2c6faa3c73d554c2a05bb3d05f8990c5b354f52307d0d9

Contents?: true

Size: 997 Bytes

Versions: 2

Compression:

Stored size: 997 Bytes

Contents

= render "layouts/manage/page_title", title: "Hackathon Configuration"

.row
  .col-lg-6
    .card
      .card-body
        %h5.card-title Hackathon Manager Config
        %h6.card-subtitle.mb-2.text-muted
          Hackathon Manager configuration can be changed in the source code at
          %code config/hackathon.yml
          \.
        %hr
        - Rails.configuration.hackathon.keys.each do |key|
          %p
            %b #{key}:
            %pre= Rails.configuration.hackathon[key]

  .col-lg-6
    .card
      .card-body
        %h5.card-title Environment Variables
        %h6.card-subtitle.mb-2.text-muted
          Environment variables are configured on the production server.
        %hr
        %p
          %b Carpool Link:
          %pre= ENV['CARPOOL_LINK'] || '[No value]'
        %p
          %b Slack Sign Up URL:
          %pre= ENV['SLACK_SIGNUP_URL'] || '[No value]'
        %p
          %b AWS S3 Bucket for Resumes:
          %pre= ENV['AWS_BUCKET'] || '[No value]'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hackathon_manager-0.7.1 app/views/manage/configs/show.html.haml
hackathon_manager-0.7.0 app/views/manage/configs/show.html.haml