Skip to content

Commit 9820c18

Browse files
author
Tyler Romero
authored
Rename app.groundlight.ai to dashboard.groundlight.ai (#270)
New login flow.
1 parent bb33854 commit 9820c18

File tree

9 files changed

+31
-43
lines changed

9 files changed

+31
-43
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ Some more resources you might like:
3131
- [Code Documentation](https://code.groundlight.ai/python-sdk/docs/getting-started)
3232
- [Python SDK on PyPi](https://pypi.org/project/groundlight/) or [GitHub](https://github.com/groundlight/python-sdk)
3333
- [Company](https://www.groundlight.ai/)
34-
- [Login to Groundlight App](https://app.groundlight.ai/)
34+
- [Login to the Groundlight Dashboard](https://dashboard.groundlight.ai/)

docs/docs/getting-started/1-api-tokens.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ gl = Groundlight(api_token=token)
4040
```
4141

4242
## Creating and Revoking API Tokens
43-
You can manage your API tokens from the Groundlight website at [https://app.groundlight.ai/reef/my-account/api-tokens](https://app.groundlight.ai/reef/my-account/api-tokens).
43+
You can manage your API tokens from the Groundlight dashboard at [https://dashboard.groundlight.ai/reef/my-account/api-tokens](https://dashboard.groundlight.ai/reef/my-account/api-tokens).
4444

4545

4646
### Creating API Tokens
@@ -66,4 +66,3 @@ On the API tokens page, you can see a list of your current tokens, along with th
6666
1. Confirm that you want to revoke the token.
6767

6868
Note: Revoking an API token will immediately invalidate it and prevent any applications using it from accessing your Groundlight account. Be sure to update your applications with a new token before revoking an old one.
69-

docs/docs/getting-started/3-retail-analytics.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pip install groundlight opencv-python pillow
3232

3333
## Creating the Application
3434

35-
1. First, log in to the [Groundlight application](https://app.groundlight.ai) and get an [API Token](api-tokens).
35+
1. First, log in to the [Groundlight dashboard](https://dashboard.groundlight.ai) and create an [API Token](https://dashboard.groundlight.ai/reef/my-account/api-tokens).
3636

3737
2. Next, we'll write the Python script for the application. Import the required libraries:
3838

@@ -166,4 +166,3 @@ Save the script as `service_counter_monitor.py` and run it:
166166
```bash
167167
python service_counter_monitor.py
168168
```
169-

docs/docs/getting-started/4-dog-on-couch.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pip install groundlight opencv-python pillow pyaudio
1919

2020
## Creating the Application
2121

22-
1. First, log in to the [Groundlight application](https://app.groundlight.ai) and get an [API Token](api-tokens).
22+
1. First, log in to the [Groundlight dashboard](https://dashboard.groundlight.ai) and create an [API Token](https://dashboard.groundlight.ai/reef/my-account/api-tokens).
2323

2424
2. Next, we'll write the Python script for the application. Import the required libraries:
2525

@@ -106,4 +106,3 @@ Save the script as `dog_on_couch_detector.py` and run it:
106106
```bash
107107
python dog_on_couch_detector.py
108108
```
109-

docs/docs/getting-started/5-streaming.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This will download the most recent frame from a YouTube live stream and save it
3939
chmod +x get_latest_frame.sh
4040
```
4141

42-
3. Log in to the [Groundlight application](https://app.groundlight.ai) and get an [API Token](api-tokens).
42+
3. Log in to the [Groundlight dashboard](https://dashboard.groundlight.ai) and create an [API Token](https://dashboard.groundlight.ai/reef/my-account/api-tokens).
4343

4444
4. Next, we'll write the Python script for the application.
4545

@@ -83,4 +83,3 @@ if __name__ == "__main__":
8383
```bash
8484
python streaming_alert.py --video-id=<VIDEO_ID> --detector-name=<DETECTOR_NAME> --query=<QUERY IN QUOTATION MARKS>
8585
```
86-

docs/docs/getting-started/getting-started.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ Groundlight's Escalation Technology combines the power of generative AI using ou
3333
pip3 install groundlight
3434
```
3535

36-
1. Head over to the [groundlight web
37-
app](https://app.groundlight.ai/reef/my-account/api-tokens) to create an [API token](/docs/getting-started/api-tokens). You will
36+
1. Head over to the [Groundlight dashboard](https://dashboard.groundlight.ai/) to create an [API token](https://dashboard.groundlight.ai/reef/my-account/api-tokens). You will
3837
need to set the `GROUNDLIGHT_API_TOKEN` environment variable to access the API.
3938

4039
```shell

docs/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ const config = {
176176
},
177177
{
178178
label: "Sign In",
179-
href: "https://app.groundlight.ai/",
179+
href: "https://dashboard.groundlight.ai/",
180180
},
181181
],
182182
},

docs/package-lock.json

Lines changed: 23 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/groundlight/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
API_TOKEN_WEB_URL = "https://app.groundlight.ai/reef/my-account/api-tokens"
1+
API_TOKEN_WEB_URL = "https://dashboard.groundlight.ai/reef/my-account/api-tokens"
22
API_TOKEN_VARIABLE_NAME = "GROUNDLIGHT_API_TOKEN"
33

44
DEFAULT_ENDPOINT = "https://api.groundlight.ai/"

0 commit comments

Comments
 (0)