Skip to content

Commit ec08444

Browse files
committed
Adds executable for starting server
- Allows us to change our server setup without additional documentation
1 parent 7352a08 commit ec08444

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ You can copy that over to your own `.env` file to set these environment variable
3232

3333
Next, to start the server, you can run:
3434

35-
```ruby
36-
bundle exec rackup
35+
```sh
36+
bin/server
3737
```
3838

3939
Then navigate to `http://localhost:9292/saml/auth` to begin making your SAML requests.

Diff for: bin/server

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
set -vx
4+
5+
bundle exec rackup

0 commit comments

Comments
 (0)