From 6150962cb1fbc1c4164cef3ac23b28f3b94395c0 Mon Sep 17 00:00:00 2001
From: Amit Sharma <coutamit.s19@gmail.com>
Date: Wed, 24 May 2023 10:05:46 +0000
Subject: [PATCH] Centro Configs

---
 .gitpod.yml                        |  7 ++++++-
 docker-compose.yml                 |  6 ++++++
 packages/centro/.dockerignore      |  3 +++
 packages/centro/Dockerfile         | 19 +++++++++++++++++++
 packages/centro/config/config.json |  2 +-
 5 files changed, 35 insertions(+), 2 deletions(-)
 create mode 100644 packages/centro/.dockerignore
 create mode 100644 packages/centro/Dockerfile

diff --git a/.gitpod.yml b/.gitpod.yml
index b11f698..7745381 100644
--- a/.gitpod.yml
+++ b/.gitpod.yml
@@ -73,4 +73,9 @@ ports:
   - port: 9000 
     onOpen: ignore
     visibility: public
-    description: Minio API
\ No newline at end of file
+    description: Minio API
+  
+  - port: 3560 
+    onOpen: ignore
+    visibility: public
+    description: Centro API
\ No newline at end of file
diff --git a/docker-compose.yml b/docker-compose.yml
index b811849..8cd7680 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -207,6 +207,12 @@ services:
         REACT_APP_HASURA_URL: ${REACT_APP_HASURA_URL}
     ports:
       - 3000:80
+  
+  centro:
+    image: centro
+    build: packages/centro
+    ports: 
+      - 3560:3560
       
 networks:
   db_net:
diff --git a/packages/centro/.dockerignore b/packages/centro/.dockerignore
new file mode 100644
index 0000000..bdfa6b8
--- /dev/null
+++ b/packages/centro/.dockerignore
@@ -0,0 +1,3 @@
+.env
+node_modules
+dist
\ No newline at end of file
diff --git a/packages/centro/Dockerfile b/packages/centro/Dockerfile
new file mode 100644
index 0000000..cacfefe
--- /dev/null
+++ b/packages/centro/Dockerfile
@@ -0,0 +1,19 @@
+FROM node:16
+
+# Create app directory
+WORKDIR /app
+
+# Install app dependencies
+# A wildcard is used to ensure both package.json AND package-lock.json are copied
+# where available (npm@5+)
+COPY package*.json ./
+
+RUN npm install
+# If you are building your code for production
+# RUN npm ci --omit=dev
+
+# Bundle app source
+COPY . .
+
+EXPOSE 3560
+CMD [ "npm", "run", "start" ]
\ No newline at end of file
diff --git a/packages/centro/config/config.json b/packages/centro/config/config.json
index d2ad483..0212e78 100644
--- a/packages/centro/config/config.json
+++ b/packages/centro/config/config.json
@@ -1,6 +1,6 @@
 {
     "name": "Centro",
-    "port": 3000,
+    "port": 3560,
     "enketo": {
         "api url": "http://localhost:8005/api/v1",
         "api key": "enketorules"
-- 
GitLab