Skip to content

Commit 1e6096d

Browse files
committed
Rename project and related references from eoscdcpoc to matchmaker-frontend.
1 parent 0e3d6e0 commit 1e6096d

File tree

6 files changed

+69
-15
lines changed

6 files changed

+69
-15
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
platforms: linux/amd64,linux/arm64
4040
push: true
4141
tags: |
42-
ghcr.io/eosc-data-commons/eoscdcpoc-frontend:latest
43-
ghcr.io/eosc-data-commons/eoscdcpoc-frontend:${{ steps.get_version.outputs.version }}
42+
ghcr.io/eosc-data-commons/matchmaker-frontend:latest
43+
ghcr.io/eosc-data-commons/matchmaker-frontend:${{ steps.get_version.outputs.version }}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ Open Terminal (Mac) or Command Prompt (Windows) and run these commands one by on
4949

5050
Clone the repository:
5151
```bash
52-
git clone https://github.com/EOSC-Data-Commons/eoscdcpoc.git
52+
git clone https://github.com/EOSC-Data-Commons/matchmaker.git
5353
```
5454

5555
Navigate to the project folder:
5656
```bash
57-
cd eoscdcpoc
57+
cd matchmaker
5858
```
5959

6060
Install dependencies:
@@ -100,21 +100,21 @@ If you prefer not to install Node.js and npm, you can run the frontend directly
100100
You can pull the latest published image from GitHub Container Registry:
101101

102102
```bash
103-
docker pull ghcr.io/eosc-data-commons/eoscdcpoc-frontend:latest
103+
docker pull ghcr.io/eosc-data-commons/matchmaker-frontend:latest
104104
```
105105

106106
Or pull a specific version (replace `<version>` with the version you want, e.g., `1.2.3`):
107107

108108
```bash
109-
docker pull ghcr.io/eosc-data-commons/eoscdcpoc-frontend:<version>
109+
docker pull ghcr.io/eosc-data-commons/matchmaker-frontend:<version>
110110
```
111111

112112
### Run the Docker container
113113

114114
To run the frontend container and map it to your local port 5173:
115115

116116
```bash
117-
docker run -p 5173:80 ghcr.io/eosc-data-commons/eoscdcpoc-frontend:latest
117+
docker run -p 5173:80 ghcr.io/eosc-data-commons/matchmaker-frontend:latest
118118
```
119119

120120
- The app will be available at http://localhost:5173

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
frontend:
3-
image: ghcr.io/eosc-data-commons/eoscdcpoc-frontend:latest
3+
image: ghcr.io/eosc-data-commons/matchmaker-frontend:latest
44
build: .
55
ports:
66
- "127.0.0.1:5173:80"

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "eoscdcpoc",
2+
"name": "matchmaker-frontend",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const Footer = ({translucent = false, className = ''}: FooterProps) => {
4848
</p>
4949
<p className="text-xs font-light text-eosc-gray mt-1">
5050
<a
51-
href="https://github.com/EOSC-Data-Commons/eoscdcpoc/blob/main/CHANGELOG.md"
51+
href="https://github.com/EOSC-Data-Commons/matchmaker/blob/main/CHANGELOG.md"
5252
target="_blank"
5353
rel="noopener noreferrer"
5454
className={"hover:text-eosc-dark-blue transition-colors"}

0 commit comments

Comments
 (0)