Skip to content

Commit 432c1d5

Browse files
committed
fix: typo errors and update text content
1 parent 7399569 commit 432c1d5

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ https://sites.google.com/view/gsites-embed-app/full-page
6969
1. **NextJS v13.0.4** (client-side SSG)
7070
- NextJS is one of the @latest React frameworks officially endorsed on the react.dev website
7171
- NextJS's Static Side Generation (SSG) feature, combined with Incremental Static Generation (ISG) creates SEO-optimized websites fit for uploading on static hosting services such as GitHub Pages.
72-
- NextJS offers code automatic code-splitting, enabling a smaller download footprint per page route
72+
- NextJS offers automatic code-splitting, enabling a smaller download footprint per page route
7373
2. **React 18.2.0**
7474
- React version 18's is the latest react version as of this writing
7575
3. **@reduxjs/toolkit v1.9.3**

client/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
FROM node:20.15.0-alpine as base
1+
FROM node:20.15.0-alpine AS base
22
RUN mkdir -p /opt/client
33
WORKDIR /opt/client
44
RUN adduser -S client
55
RUN chown -R client /opt/client
66
COPY package*.json ./
77

88
# BUILD TARGET
9-
FROM base as build
9+
FROM base AS build
1010
RUN npm install && npm cache clean --force
1111
COPY . ./
1212
RUN npm run export
1313
USER client
1414

1515
# DEVELOPMENT CLIENT PROFILE
16-
FROM base as development
16+
FROM base AS development
1717
ENV NODE_ENV=development
1818
RUN npm install && npm cache clean --force
1919
COPY . ./
2020
EXPOSE 3000
2121
CMD ["npm", "run", "dev"]
2222

2323
# PRODUCTION CLIENT PROFILE
24-
FROM nginx:1.22.0-alpine as production
24+
FROM nginx:1.22.0-alpine AS production
2525
COPY --from=build /opt/client/out /usr/share/nginx/html
2626
RUN rm /etc/nginx/conf.d/default.conf
2727
COPY config/nginx/nginx.conf /etc/nginx/conf.d

client/features/filecards/constants/cardorderedlabels.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{ "key": "category", "label": "Category" },
66
{ "key": "description", "label": "Description" },
77
{ "key": "picture_url", "label": "Picture URL" },
8-
{ "key": "download_url", "label": "Download URL" },
8+
{ "key": "download_url", "label": "File Download URL" },
99
{ "key": "website_url", "label": "Website URL" },
1010
{ "key": "date_created", "label": "Date Created" },
1111
{ "key": "date_updated", "label": "Date Updated" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{ "key": "picture_url", "label": "Picture URL" },
3-
{ "key": "download_url", "label": "Download URL" },
3+
{ "key": "download_url", "label": "File Download URL" },
44
{ "key": "mime_type", "label": "File Type" },
55
{ "key": "website_url", "label": "Website URL" }
66
]

client/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function Home() {
4646
CMS
4747
</h2>
4848
<p>
49-
Content Management System (CMS) for Posts.
49+
Content Management System (CMS) for Posts and File Cards.
5050
</p>
5151
</Link>
5252

server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# BASE PROFILE
2-
FROM node:20.15.0-alpine as base
2+
FROM node:20.15.0-alpine AS base
33
RUN mkdir -p /opt/server
44
WORKDIR /opt/server
55
RUN adduser -S server
66
RUN chown -R server /opt/server
77
COPY package*.json ./
88

99
# DEVELOPMENT PROFILE
10-
FROM base as development
10+
FROM base AS development
1111
RUN npm install && npm cache clean --force
1212
COPY . ./
1313
USER server

0 commit comments

Comments
 (0)