-
Notifications
You must be signed in to change notification settings - Fork 131
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
Update README.md #17
base: main
Are you sure you want to change the base?
Update README.md #17
Conversation
Practicing technical writing.
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.
Thanks for the PR
|
||
`REPL_PASSWORD` is used to replicate between instances. | ||
|
||
'OPERATOR_PASSWORD' is used to create a "root" user when a cluster is initialized. |
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.
Same as above, replace single quotes with backticks.
|
||
## Prepare your app | ||
|
||
### `flyctl init` | ||
Init gets you going with a Fly application and generates a config file. | ||
|
||
### Set secrets | ||
This app requires `SU_PASSWORD` and `REPL_PASSWORD` environment variables. | ||
This app requires `SU_PASSWORD` and `REPL_PASSWORD` environment variables and gives users the option to create a "root" account on new database clusters using 'OPERATOR_PASSWORD'. |
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.
Let's replace the single quotations with backtick's for consistency. E.G. OPERATOR_PASSWORD
instead of 'OPERATOR_PASSWORD'.
and gives users the option to create a "root" account on new database clusters
We could maybe make this a bit more direct. Maybe something like:
This app requires SU_PASSWORD
and REPL_PASSWORD
environment variables. Optionally, you may specify the OPERATOR_PASSWORD
to create an initial "postgres" user on provision.
Practicing technical writing.