-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(hybrid-cloud): Adds ngrok config example (#67)
- Loading branch information
1 parent
c25225c
commit c01b80b
Showing
3 changed files
with
29 additions
and
29 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 |
---|---|---|
|
@@ -14,6 +14,7 @@ dist | |
|
||
# Secrets (shh!) | ||
.env | ||
ngrok-config.yml | ||
|
||
# Misc | ||
.DS_Store | ||
|
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
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,19 @@ | ||
version: "2" | ||
authtoken: <your auth token here> | ||
|
||
tunnels: | ||
acme-frontend: | ||
proto: http | ||
# hostname: <Optional: Put static hostname for frontend here> | ||
# Make sure this addr matches REACT_APP_PORT in .env | ||
addr: 3000 | ||
acme-backend-py: | ||
proto: http | ||
# hostname: <Optional: Put static hostname for python backend here> | ||
# Make sure this addr matches FLASK_RUN_PORT in .env | ||
addr: 5100 | ||
acme-backend-ts: | ||
proto: http | ||
# hostname: <Optional: Put static hostname for TS backend here> | ||
# Make sure this addr matches EXPRESS_LISTEN_PORT in .env | ||
addr: 5200 |