-
Notifications
You must be signed in to change notification settings - Fork 132
Fly.io #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fly.io #49
Conversation
|
Working now on getting the relay server demo running in GKE, but this might be useful to revisit at some point. |
kixelated
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gud Dockerfile, just needs to be updated with the latest branch.
cert/fly-secrets
Outdated
| @@ -0,0 +1,4 @@ | |||
| #!/usr/bin/env bash | |||
|
|
|||
| cat cert/moq-demo.englishm.net.key | base64 | flyctl secrets set --stage MOQ_KEY=- | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this file should be checked in?
entrypoint.sh
Outdated
| echo "$MOQ_CRT" | base64 -d > cert/moq-demo.crt | ||
| echo "$MOQ_KEY" | base64 -d > cert/moq-demo.key | ||
|
|
||
| # while true; do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
heh
Dockerfile
Outdated
|
|
||
| RUN mkdir -p moq-transport/src moq-transport-quinn/src moq-demo/src moq-warp/src | ||
| COPY moq-transport/Cargo.toml moq-transport/Cargo.toml | ||
| COPY moq-transport-quinn/Cargo.toml moq-transport-quinn/Cargo.toml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't exist when you update.
Ensure each member's Cargo.toml is copied and an empty lib.rs exists so we can fetch and build and cache our deps.
Adds support for deploying the `moq-quinn` relay server to fly.io
Adds support for deploying the
moq-demorelay server to fly.io