Self host cli and docs - #555
Merged
Merged
Conversation
…opied. code block without $ will behave the same
# Conflicts: # poetry.lock
arikalon1
approved these changes
Oct 1, 2022
arikalon1
left a comment
Contributor
There was a problem hiding this comment.
Great work!
Left some minor comments.
Feel free to fix and merge
| JWT_SECRET: str = gen_secret(32) | ||
| JWT_EXPIRY: int = 3600 | ||
| ANON_KEY: str = JWT.encode( | ||
| {"role": "anon", "iss": "supabase", "iat": 1661029200, "exp": 1818795600}, |
Contributor
There was a problem hiding this comment.
I would comment what iss/iat/exp means
And I would put the values in constants with meaningful names.
For example: 1_DAY_EXPIRATION = 1818795600
# Conflicts: # poetry.lock
make provider and domain required, add node ports and storage optional and remove some values
pavangudiwada
pushed a commit
to pavangudiwada/robusta
that referenced
this pull request
Nov 6, 2023
* new self-host command menu. base gen-config command * add docs for gke, on prem and slack app * adding code blocks the option to add prompt lines that will only be copied.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is adds the new CLI command to generate the self host values + backend config.
Also migrated the guides to the docs.