Skip to content

Commit

Permalink
make secret key placeholder more clear (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Oct 18, 2024
1 parent 533c814 commit 4b7a4ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions skyvern/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ class Settings(BaseSettings):
ALLOWED_ORIGINS: list[str] = ["*"]

# Secret key for JWT. Please generate your own secret key in production
SECRET_KEY: str = "RX1NvhujcJqBPi8O78-7aSfJEWuT86-fll4CzKc_uek"
SECRET_KEY: str = "PLACEHOLDER"
# Algorithm used to sign the JWT
SIGNATURE_ALGORITHM: str = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 7 # one week

SKYVERN_API_KEY: str = "SKYVERN_API_KEY"
SKYVERN_API_KEY: str = "PLACEHOLDER"

# Artifact storage settings
ARTIFACT_STORAGE_PATH: str = f"{SKYVERN_DIR}/artifacts"
Expand Down

0 comments on commit 4b7a4ed

Please sign in to comment.