@eventcatalog/create-eventcatalog 3.0.4 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -22466,7 +22466,7 @@ var import_os2 = __toESM(require("os"));
|
|
|
22466
22466
|
var package_default = {
|
|
22467
22467
|
name: "@eventcatalog/create-eventcatalog",
|
|
22468
22468
|
description: "Create EventCatalog with one command",
|
|
22469
|
-
version: "3.0.
|
|
22469
|
+
version: "3.0.5",
|
|
22470
22470
|
bin: {
|
|
22471
22471
|
"create-catalog": "./dist/index.js"
|
|
22472
22472
|
},
|
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Use this Docker file if your EventCatalog output is set to `server`.
|
|
2
|
+
# When EventCatalog output is set to `server`, the output will be a node server.
|
|
3
|
+
# This server is required for certain features like the EventCatalog Chat (with your own keys).
|
|
4
|
+
|
|
5
|
+
FROM node:lts AS runtime
|
|
6
|
+
WORKDIR /app
|
|
7
|
+
|
|
8
|
+
# Install dependencies
|
|
9
|
+
COPY package.json package-lock.json ./
|
|
10
|
+
RUN npm install
|
|
11
|
+
|
|
12
|
+
COPY . .
|
|
13
|
+
|
|
14
|
+
# Fix for Astro in Docker: https://github.com/withastro/astro/issues/2596
|
|
15
|
+
ENV NODE_OPTIONS=--max_old_space_size=2048
|
|
16
|
+
RUN npm run build
|
|
17
|
+
|
|
18
|
+
ENV HOST=0.0.0.0
|
|
19
|
+
ENV PORT=3000
|
|
20
|
+
EXPOSE 3000
|
|
21
|
+
|
|
22
|
+
# Start the server
|
|
23
|
+
CMD npm run start
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Use this Docker file if your EventCatalog output is set to `server`.
|
|
2
|
+
# When EventCatalog output is set to `server`, the output will be a node server.
|
|
3
|
+
# This server is required for certain features like the EventCatalog Chat (with your own keys).
|
|
4
|
+
|
|
5
|
+
FROM node:lts AS runtime
|
|
6
|
+
WORKDIR /app
|
|
7
|
+
|
|
8
|
+
# Install dependencies
|
|
9
|
+
COPY package.json package-lock.json ./
|
|
10
|
+
RUN npm install
|
|
11
|
+
|
|
12
|
+
COPY . .
|
|
13
|
+
|
|
14
|
+
# Fix for Astro in Docker: https://github.com/withastro/astro/issues/2596
|
|
15
|
+
ENV NODE_OPTIONS=--max_old_space_size=2048
|
|
16
|
+
RUN npm run build
|
|
17
|
+
|
|
18
|
+
ENV HOST=0.0.0.0
|
|
19
|
+
ENV PORT=3000
|
|
20
|
+
EXPOSE 3000
|
|
21
|
+
|
|
22
|
+
# Start the server
|
|
23
|
+
CMD npm run start
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Use this Docker file if your EventCatalog output is set to `server`.
|
|
2
|
+
# When EventCatalog output is set to `server`, the output will be a node server.
|
|
3
|
+
# This server is required for certain features like the EventCatalog Chat (with your own keys).
|
|
4
|
+
|
|
5
|
+
FROM node:lts AS runtime
|
|
6
|
+
WORKDIR /app
|
|
7
|
+
|
|
8
|
+
# Install dependencies
|
|
9
|
+
COPY package.json package-lock.json ./
|
|
10
|
+
RUN npm install
|
|
11
|
+
|
|
12
|
+
COPY . .
|
|
13
|
+
|
|
14
|
+
# Fix for Astro in Docker: https://github.com/withastro/astro/issues/2596
|
|
15
|
+
ENV NODE_OPTIONS=--max_old_space_size=2048
|
|
16
|
+
RUN npm run build
|
|
17
|
+
|
|
18
|
+
ENV HOST=0.0.0.0
|
|
19
|
+
ENV PORT=3000
|
|
20
|
+
EXPOSE 3000
|
|
21
|
+
|
|
22
|
+
# Start the server
|
|
23
|
+
CMD npm run start
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Use this Docker file if your EventCatalog output is set to `server`.
|
|
2
|
+
# When EventCatalog output is set to `server`, the output will be a node server.
|
|
3
|
+
# This server is required for certain features like the EventCatalog Chat (with your own keys).
|
|
4
|
+
|
|
5
|
+
FROM node:lts AS runtime
|
|
6
|
+
WORKDIR /app
|
|
7
|
+
|
|
8
|
+
# Install dependencies
|
|
9
|
+
COPY package.json package-lock.json ./
|
|
10
|
+
RUN npm install
|
|
11
|
+
|
|
12
|
+
COPY . .
|
|
13
|
+
|
|
14
|
+
# Fix for Astro in Docker: https://github.com/withastro/astro/issues/2596
|
|
15
|
+
ENV NODE_OPTIONS=--max_old_space_size=2048
|
|
16
|
+
RUN npm run build
|
|
17
|
+
|
|
18
|
+
ENV HOST=0.0.0.0
|
|
19
|
+
ENV PORT=3000
|
|
20
|
+
EXPOSE 3000
|
|
21
|
+
|
|
22
|
+
# Start the server
|
|
23
|
+
CMD npm run start
|