Last active
February 20, 2023 02:41
-
-
Save DiegoFleitas/7811eb8a5dc91c8d4416350496665b89 to your computer and use it in GitHub Desktop.
Fly.io read secrets plain text
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
$ flyctl apps list | |
$ flyctl ssh console -a <app-name> | |
# type env |
stop app without deleting
flyctl scale count 0 -a <app-name>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
set secret
$ flyctl secrets set SECRET="myvalue" -a <app-name>
unset secret
$ flyctl secrets unset SECRET -a <app-name>