-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add welcome message to monolith
- Loading branch information
1 parent
022fb23
commit b90b3df
Showing
3 changed files
with
46 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
cat << EOF | ||
Server is ready | ||
Dashboard http://127.0.0.1:8080/ui/ | ||
API 127.0.0.1:8081 | ||
Edge API 127.0.0.1:8081 | ||
Orchestrator 127.0.0.1:8082 | ||
S3 127.0.0.1:9000 | ||
Server Config /etc/rivet-server/config.yaml | ||
Client Config /etc/rivet-server/config.yaml | ||
Please visit https://rivet-gg/docs/quickstart to get started. | ||
EOF | ||
|
||
# Sleep for infinity since this service will be restarted if it exits | ||
sleep infinity | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
cat << EOF | ||
Starting Rivet | ||
Version $(rivet-server --version) | ||
Operating https://rivet.gg/docs/self-hosting | ||
Documentation https://rivet.gg/docs | ||
Discord https://rivet.gg/discord | ||
EOF | ||
|
||
# Sleep for infinity since this service will be restarted if it exits | ||
sleep infinity | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters