Skip to content

Commit c9d5ab7

Browse files
committed
change to myapp for easier renaming
1 parent 74ff558 commit c9d5ab7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
2-
webapp:
3-
image: ghcr.io/jamowei/webapp:1.0.0
4-
container_name: webapp
2+
myapp:
3+
image: ghcr.io/jamowei/myapp:1.0.0
4+
container_name: myapp
55
ports:
66
- 3000:3000
77
restart: unless-stopped

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
name: webapp
2+
name: myapp
33
description: A Helm chart for Kubernetes
44

55
# A chart can be either an 'application' or a 'library' chart.

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replicaCount: 1
77

88
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
99
image:
10-
repository: ghcr.io/jamowei/webapp
10+
repository: ghcr.io/jamowei/myapp
1111
# This sets the pull policy for images.
1212
pullPolicy: IfNotPresent
1313
# Overrides the image tag whose default is the chart appVersion.

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/jamowei/webapp.git"
10+
"url": "git+https://github.com/jamowei/myapp.git"
1111
},
1212
"author": "jamowei",
1313
"license": "MIT",
1414
"bugs": {
15-
"url": "https://github.com/jamowei/webapp/issues"
15+
"url": "https://github.com/jamowei/myapp/issues"
1616
},
17-
"homepage": "https://github.com/jamowei/webapp#readme",
17+
"homepage": "https://github.com/jamowei/myapp#readme",
1818
"description": "",
1919
"devDependencies": {
2020
"esbuild": "0.24.0",

src/resources/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>WebApp</title>
7+
<title>MyApp</title>
88
<link href="app.css" rel="stylesheet">
99
</head>
1010

0 commit comments

Comments
 (0)