Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 63ceef6

Browse files
committed
standards
1 parent c1a6e38 commit 63ceef6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
environment:
4848
DEPLOY_ENV: "DEV"
4949
LOGICAL_ENV: "dev"
50-
APPNAME: "micro-frontends-react-app"
50+
APPNAME: "micro-frontends-community-admin-app"
5151
steps: *builddeploy_steps
5252

5353
"build-prod":
5454
<<: *defaults
5555
environment:
5656
DEPLOY_ENV: "PROD"
5757
LOGICAL_ENV: "prod"
58-
APPNAME: "micro-frontends-react-app"
58+
APPNAME: "micro-frontends-community-admin-app"
5959
steps: *builddeploy_steps
6060

6161
workflows:

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
FROM node:latest
33

44
# Copy the current directory into the Docker image
5-
COPY . /micro-frontends-react-app
5+
COPY . /micro-frontends-community-admin-app
66

77
# Set working directory for future use
8-
WORKDIR /micro-frontends-react-app
8+
WORKDIR /micro-frontends-community-admin-app
99

1010
# Install the dependencies from package.json
1111
RUN npm install

docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
3-
micro-frontends-react-app:
4-
image: micro-frontends-react-app:latest
3+
micro-frontends-community-admin-app:
4+
image: micro-frontends-community-admin-app:latest
55
build:
66
context: ../
77
dockerfile: docker/Dockerfile

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const express = require("express");
44

55
const app = express();
66

7-
app.use('/react',
7+
app.use('/community-admin-app',
88
express.static("./dist", {
99
setHeaders: function setHeaders(res) {
1010
res.header("Access-Control-Allow-Origin", "*");

0 commit comments

Comments
 (0)