diff options
| author | mo khan <mo@mokhan.ca> | 2025-03-05 12:26:47 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-03-05 12:26:47 -0700 |
| commit | 06a4e0783c1886ca46468c4caeb42a41d56fd956 (patch) | |
| tree | 7d62749b994504c9a363b51fe2113b7b2aa13376 /bin/api | |
| parent | 20e152182f7137ae2c7f512d0cab1b3c846a4677 (diff) | |
refactor: move SAML routes to /saml/ path
Diffstat (limited to 'bin/api')
| -rwxr-xr-x | bin/api | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -13,9 +13,9 @@ gemfile do gem "webrick", "~> 1.0" end -$scheme = ENV.fetch('SCHEME', 'http') -$port = ENV.fetch('PORT', 8284).to_i -$host = ENV.fetch('HOST', "localhost:#{$port}") +$scheme = ENV.fetch("SCHEME", "http") +$port = ENV.fetch("PORT", 8284).to_i +$host = ENV.fetch("HOST", "localhost:#{$port}") class Project class << self |
