Skip to content

Commit 46b8f4c

Browse files
committed
Rename thunder -> thunderid
1 parent bea9ed0 commit 46b8f4c

11 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/postgres-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
env:
2929
GOFLAGS: "-mod=readonly"
3030
PRODUCT_NAME: "ThunderID"
31-
PRODUCT_NAME_LOWER: "thunder"
31+
PRODUCT_NAME_LOWER: "thunderid"
3232

3333
jobs:
3434
dependency-guard:

.github/workflows/pr-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
env:
2020
GOFLAGS: "-mod=readonly"
2121
PRODUCT_NAME: "ThunderID"
22-
PRODUCT_NAME_LOWER: "thunder"
22+
PRODUCT_NAME_LOWER: "thunderid"
2323

2424
jobs:
2525
dependency-guard:

.github/workflows/release-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ permissions:
4444
env:
4545
GOFLAGS: "-mod=readonly"
4646
PRODUCT_NAME: "ThunderID"
47-
PRODUCT_NAME_LOWER: "thunder"
47+
PRODUCT_NAME_LOWER: "thunderid"
4848
RELEASE_BRANCH: "release"
4949
RELEASE_GIT_USER_NAME: "thunder-automation-bot"
5050
RELEASE_GIT_USER_EMAIL: "thunder-bot@wso2.com"

.github/workflows/windows-build-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
env:
1515
GOFLAGS: "-mod=readonly"
1616
PRODUCT_NAME: "ThunderID"
17-
PRODUCT_NAME_LOWER: "thunder"
17+
PRODUCT_NAME_LOWER: "thunderid"
1818

1919
jobs:
2020
dependency-guard:

.github/workflows/windows-powershell-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
env:
1313
GOFLAGS: "-mod=readonly"
1414
PRODUCT_NAME: "ThunderID"
15-
PRODUCT_NAME_LOWER: "thunder"
15+
PRODUCT_NAME_LOWER: "thunderid"
1616

1717
jobs:
1818
build-windows:

.vale/styles/config/vocabularies/vocab/accept.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ IAM
99
IdP
1010
PKCE
1111
ThunderID
12-
@thunder
12+
@thunderid
1313
npm
1414
pnpm
1515
[Vv]ite

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ RUN apk add --no-cache \
8484
unzip
8585

8686
# Create user and group
87-
RUN addgroup -S thunder -g 10001 && adduser -S thunder -u 10001 -G thunder
87+
RUN addgroup -S thunderid -g 10001 && adduser -S thunderid -u 10001 -G thunderid
8888

8989
# Create application directory
90-
WORKDIR /opt/thunder
90+
WORKDIR /opt/thunderid
9191

9292
# Copy and extract the package from builder stage
9393
# TARGETARCH is automatically set by Docker during multi-arch builds
@@ -101,11 +101,11 @@ RUN cd /tmp/dist && \
101101
fi && \
102102
cd /tmp && \
103103
unzip thunder-*.zip && \
104-
cp -r thunder-*/* /opt/thunder/ && \
104+
cp -r thunder-*/* /opt/thunderid/ && \
105105
rm -rf /tmp/thunder-* /tmp/dist
106106

107107
# Set ownership and permissions
108-
RUN chown -R thunder:thunder /opt/thunder && \
108+
RUN chown -R thunderid:thunderid /opt/thunderid && \
109109
chmod +x thunder start.sh setup.sh scripts/init_script.sh && \
110110
(find consent -name "consent-server" -o -name "start.sh" 2>/dev/null | xargs -r chmod +x) && \
111111
(find bootstrap -name "*.sh" -type f -exec chmod +x {} \; 2>/dev/null || true)
@@ -114,7 +114,7 @@ RUN chown -R thunder:thunder /opt/thunder && \
114114
EXPOSE 8090
115115

116116
# Switch to user
117-
USER thunder
117+
USER thunderid
118118

119119
# Set environment variables
120120
ENV BACKEND_PORT=8090

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Constants
2020
VERSION_FILE=version.txt
2121
VERSION=$(shell cat $(VERSION_FILE))
22-
BINARY_NAME=thunder
22+
BINARY_NAME=thunderid
2323
PRODUCT_NAME=ThunderID
2424

2525
export WITHOUT_CONSENT ?= false

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,22 @@ Follow these steps to download the latest release of ThunderID and run it locall
4848

4949
1. **Download the distribution from the latest release**
5050

51-
Download `thunder-<version>-<os>-<arch>.zip` from the [latest release](https://github.com/asgardeo/thunder/releases/latest) for your operating system and architecture.
51+
Download `thunderid-<version>-<os>-<arch>.zip` from the [latest release](https://github.com/asgardeo/thunder/releases/latest) for your operating system and architecture.
5252

53-
For example, if you are using a MacOS machine with a Apple Silicon (ARM64) processor, you would download `thunder-<version>-macos-arm64.zip`.
53+
For example, if you are using a MacOS machine with a Apple Silicon (ARM64) processor, you would download `thunderid-<version>-macos-arm64.zip`.
5454

5555
2. **Unzip the product**
5656

5757
Unzip the downloaded file using the following command:
5858

5959
```bash
60-
unzip thunder-<version>-<os>-<arch>.zip
60+
unzip thunderid-<version>-<os>-<arch>.zip
6161
```
6262

6363
Navigate to the unzipped directory:
6464

6565
```bash
66-
cd thunder-<version>-<os>-<arch>/
66+
cd thunderid-<version>-<os>-<arch>/
6767
```
6868

6969
3. **Setup the product**
@@ -313,7 +313,7 @@ For code contributions, refer to the [Contributing Code](https://asgardeo.github
313313
314314
## Documentation
315315
316-
Please refer to the [Documentation](https://asgardeo.github.io/thunder/docs/next/guides/getting-started/what-is-thunder) for additional guidance on getting started with ThunderID and exploring its features, concepts, and usage.
316+
Please refer to the [Documentation](https://asgardeo.github.io/thunder/docs/next/guides/getting-started/what-is-thunderid) for additional guidance on getting started with ThunderID and exploring its features, concepts, and usage.
317317
318318
<details>
319319
<summary><h2>Advanced Setup & Configuration</h2></summary>

docs/content/guides/getting-started/configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ cache:
289289
username: ""
290290
password: ""
291291
db: 0
292-
key_prefix: "thunder"
292+
key_prefix: "thunderid"
293293
max_retries: 5
294294
min_retry_backoff_ms: 10
295295
max_retry_backoff_ms: 100

0 commit comments

Comments
 (0)