-
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 (#1405)
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
- Loading branch information
1 parent
aebde56
commit bc10b03
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