diff --git a/backend/Dockerfile b/backend/Dockerfile index 9144d5b..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 ./ @@ -11,4 +11,4 @@ WORKDIR /opt/app COPY ./ . RUN npm run build EXPOSE 1337 -CMD ["npm", "run", "develop"] +CMD ["npm", "run", "start"] 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,