Skip to content

Commit 437ec87

Browse files
refactor: ♻️ Update application name and API URLs to reflect rebranding to "ReMinder"
1 parent 603a5ff commit 437ec87

16 files changed

+28
-28
lines changed

.cypress.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PORT=3000
22

33
REACT_APP_NODE_ENV="development"
4-
REACT_APP_APP_NAME="Reminder App"
4+
REACT_APP_APP_NAME="ReMinder"
55
REACT_APP_PUBLIC_URL="http://localhost:3000/"
66

77
# "msw" | "mirage"
88
REACT_APP_MOCKER="msw"
9-
REACT_APP_API_URL="https://reminder-app.com/api/v1/"
9+
REACT_APP_API_URL="https://reminder.com/api/v1/"
1010

1111
REACT_APP_IS_CYPRESS_ENV=true

.development.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ ESLINT_NO_DEV_ERRORS=true
33
TSC_COMPILE_ON_ERROR=false
44

55
REACT_APP_NODE_ENV="development"
6-
REACT_APP_APP_NAME="Reminder App"
6+
REACT_APP_APP_NAME="ReMinder"
77
REACT_APP_PUBLIC_URL="http://localhost:3000/"
88

99
# "msw" | "mirage"
1010
REACT_APP_IS_DEMO_MODE=true
1111
REACT_APP_MOCKER="msw"
12-
REACT_APP_API_URL="https://reminder-app.com/api/v1/"
12+
REACT_APP_API_URL="https://reminder.com/api/v1/"
1313

.local-production.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
REACT_APP_NODE_ENV="production"
2-
REACT_APP_APP_NAME="Reminder App"
2+
REACT_APP_APP_NAME="ReMinder"
33
REACT_APP_PUBLIC_URL="http://127.0.0.1:8080/"
44

55
# "msw" | "mirage"
66
REACT_APP_MOCKER="msw"
77
REACT_APP_IS_DEMO_MODE=false
8-
REACT_APP_API_URL="https://reminder-app.com/api/v1/"
8+
REACT_APP_API_URL="https://reminder.com/api/v1/"

.playwright.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PORT=3000
22

33
REACT_APP_NODE_ENV="development"
4-
REACT_APP_APP_NAME="Reminder App"
4+
REACT_APP_APP_NAME="ReMinder"
55
REACT_APP_PUBLIC_URL="http://localhost:3000/"
66

77
# "msw"
88
REACT_APP_MOCKER="msw"
9-
REACT_APP_API_URL="https://reminder-app.com/api/v1/"
9+
REACT_APP_API_URL="https://reminder.com/api/v1/"
1010

1111
REACT_APP_IS_PLAYWRIGHT_ENV=true

.production.env

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
REACT_APP_NODE_ENV="production"
2-
REACT_APP_APP_NAME="Reminder App"
3-
# REACT_APP_PUBLIC_URL="https://singhAmandeep007.github.io/reminder-app"
4-
REACT_APP_PUBLIC_URL="https://singhamandeep.me/reminder-app/"
2+
REACT_APP_APP_NAME="ReMinder"
3+
# REACT_APP_PUBLIC_URL="https://singhAmandeep007.github.io/reminder"
4+
REACT_APP_PUBLIC_URL="https://singhamandeep.me/reminder/"
55

66
# "msw" | "mirage"
77
REACT_APP_MOCKER="msw"
88
REACT_APP_IS_DEMO_MODE=true
9-
REACT_APP_API_URL="https://reminder-app.com/api/v1/"
9+
REACT_APP_API_URL="https://reminder.com/api/v1/"

backend/nestjs-server/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/nestjs-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "reminder-app-nestjs-server",
2+
"name": "reminder-nestjs-server",
33
"version": "0.0.1",
4-
"description": "Server build using nestjs for reminder app",
4+
"description": "Server build using nestjs for ReMinder",
55
"author": {
66
"email": "amandeep.singh.fsd@gmail.com",
77
"name": "Amandeep Singh"

cypress/specs/home.cy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("Home Page", () => {
1919

2020
homeElements.root.findByRole("heading", { name: "Folder Structure", level: 2 }).should("exist");
2121

22-
homeElements.footer.contains("Copyright © 2024Amandeep Singh").should("exist");
22+
homeElements.footer.contains(`Copyright © ${new Date().getFullYear()}Amandeep Singh`).should("exist");
2323

2424
homeElements.footer
2525
.findByRole("link", { name: "Amandeep Singh" })

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "reminder-app",
2+
"name": "reminder",
33
"version": "0.1.0",
44
"homepage": ".",
55
"private": true,
@@ -80,7 +80,7 @@
8080
"DEPLOY": "------------------------------------------------------------------------",
8181
"deploy": "run-s deploy:build deploy:gh-pages",
8282
"deploy:build": "env-cmd -f ./.production.env npm run build",
83-
"deploy:gh-pages": "gh-pages -d build -- --message \"Updates\"",
83+
"deploy:gh-pages": "gh-pages -d build -- --message \"🚀 Shipping\"",
8484
"STORYBOOK": "------------------------------------------------------------------------",
8585
"storybook:start": "storybook dev -p 6006",
8686
"storybook:build": "storybook build",

playwright/specs/home.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test.describe("Home Page", () => {
77
const homeElements = new HomeElements(page);
88
await homeElements.goto();
99

10-
await expect(homeElements.page).toHaveTitle(/Reminder App/);
10+
await expect(homeElements.page).toHaveTitle(/ReMinder/);
1111
});
1212

1313
test("should render home page content and navigate to reminders page", async ({ page }) => {
@@ -21,7 +21,7 @@ test.describe("Home Page", () => {
2121

2222
await expect(homeElements.root.getByRole("heading", { name: "Folder Structure", level: 2 })).toBeVisible();
2323

24-
await expect(homeElements.footer).toContainText("Copyright © 2024Amandeep Singh");
24+
await expect(homeElements.footer).toContainText(`Copyright © ${new Date().getFullYear()}Amandeep Singh`);
2525

2626
await expect(homeElements.footer.getByRole("link", { name: "Amandeep Singh" })).toHaveAttribute(
2727
"href",

playwright/specs/reminders.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test.describe("Reminders Page", () => {
99
const remindersElements = new RemindersElements(page);
1010
await remindersElements.goto();
1111

12-
await expect(remindersElements.page).toHaveTitle(/Reminder App/);
12+
await expect(remindersElements.page).toHaveTitle(/ReMinder/);
1313
});
1414

1515
test("should render reminders page and able to create reminder group", async ({ page, mocker }) => {

public/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"short_name": "Reminder App",
2+
"short_name": "ReMinder",
33
"name": "A production grade reminder app",
44
"icons": [
55
{

src/hooks/useIDB/consts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const IDB_KEY = "__reminder-app-IDB__";
1+
export const IDB_KEY = "__ReMinder-IDB__";

src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ setupApp()
5252
})
5353
.catch((error) => {
5454
// eslint-disable-next-line no-console
55-
console.error("Something went wrong in setting up reminder app", error);
55+
console.error("Something went wrong in setting up ReMinder", error);
5656
});
5757

5858
// If you want to start measuring performance in your app, pass a function

src/modules/i18n/locales/en-US/common.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author": "Amandeep Singh",
99
"version": "1.0.0",
1010
"description": "A Production-Grade reminder app.",
11-
"appName": "Reminder App",
11+
"appName": "ReMinder",
1212
"copyright": "Copyright © {{year}}"
1313
},
1414
"lang": {

0 commit comments

Comments
 (0)