From 794d95ede8e696f163b98024b08e484b89251c93 Mon Sep 17 00:00:00 2001 From: Vukasin Paunovic Date: Wed, 28 Aug 2024 09:22:29 +0200 Subject: [PATCH 1/3] chore: change dockerfile argument --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 9f3f5a3..0dc6da6 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,7 +1,7 @@ # path: ./Dockerfile FROM node:alpine RUN apk update && apk add build-base gcc autoconf automake zlib-dev libpng-dev nasm bash vips-dev -ARG NODE_ENV=development +ARG NODE_ENV=production ENV NODE_ENV=${NODE_ENV} WORKDIR /opt/ COPY ./package*.json ./ @@ -11,4 +11,4 @@ WORKDIR /opt/app COPY ./ . RUN npm run build EXPOSE 1337 -CMD ["npm", "run", "develop"] +CMD ["npm", "run", "start"] From f33da2a8e95cc52bc7e87307d5387181a20d8df4 Mon Sep 17 00:00:00 2001 From: Vukasin Paunovic Date: Wed, 28 Aug 2024 09:55:51 +0200 Subject: [PATCH 2/3] feat: change abstract, motivation, rationale, name maxlength --- .../proposal-content/schema.json | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/backend/src/api/proposal-content/content-types/proposal-content/schema.json b/backend/src/api/proposal-content/content-types/proposal-content/schema.json index f8f298e..da764da 100644 --- a/backend/src/api/proposal-content/content-types/proposal-content/schema.json +++ b/backend/src/api/proposal-content/content-types/proposal-content/schema.json @@ -20,25 +20,25 @@ "default": false }, "prop_abstract": { - "type": "text", - "maxLength": 256 - }, + "type": "text", + "maxLength": 2500 + }, "prop_motivation": { - "type": "text", - "maxLength": 256 - }, + "type": "text", + "maxLength": 12000 + }, "prop_rationale": { - "type": "text", - "maxLength": 256 - }, + "type": "text", + "maxLength": 12000 + }, "gov_action_type_id": { "type": "string" }, "prop_name": { - "type": "string", - "required": true, - "maxLength": 60 - }, + "type": "string", + "required": true, + "maxLength": 80 + }, "prop_receiving_address": { "type": "string", "required": false, From 5a86ecd4430f698f6f3e2b8bef3d5d418e6f4271 Mon Sep 17 00:00:00 2001 From: Vukasin Paunovic Date: Wed, 28 Aug 2024 10:00:34 +0200 Subject: [PATCH 3/3] refactor: change node_env to production in dockerfile --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 4b15f75..10e1b4b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,7 +1,7 @@ # path: ./Dockerfile FROM node:alpine RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev nasm bash vips-dev -ARG NODE_ENV=development +ARG NODE_ENV=production ENV NODE_ENV=${NODE_ENV} WORKDIR /opt/ COPY ./package*.json ./