Skip to content

Commit

Permalink
Merge pull request #3 from Rippling/APPS-26017-v2
Browse files Browse the repository at this point in the history
Added prod client_id & Change Base url and API url
  • Loading branch information
vguptarippling authored Apr 11, 2024
2 parents 1675ec1 + 4fda577 commit d47d1c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rippling_cli/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from rippling_cli.constants import OAUTH_TOKEN_FILE_NAME, RIPPLING_DIRECTORY_NAME

CLIENT_ID = "OJ3RJIYivW34fb0N0amHBwRYY7ldjM9O00hkQdR4"
CLIENT_ID = "AgvGDwoBRb0BJAnL2CQ8dNbE6J2fgCFIchEOyr5S"
config_dir = Path.home() / f".{RIPPLING_DIRECTORY_NAME}"


Expand Down
4 changes: 2 additions & 2 deletions rippling_cli/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RIPPLING_DIRECTORY_NAME = "rippling_cli"
OAUTH_TOKEN_FILE_NAME = "oauth_token.json"
CODE_CHALLENGE_METHOD = "S256"
RIPPLING_BASE_URL = "http://localhost:3000"
RIPPLING_API = "http://localhost:8000"
RIPPLING_BASE_URL = "https://app.rippling.com"
RIPPLING_API = "https://app.rippling.com/api"
EXIT_UNKNOWN_EXCEPTION = 1
DEFAULT_CODE_VERIFIER_LENGTH = 43

0 comments on commit d47d1c2

Please sign in to comment.