Skip to content

Commit

Permalink
Add Settings feature with image border
Browse files Browse the repository at this point in the history
Add settings to manage Images border in report
Change routes with "datas" to "data"
  • Loading branch information
yeln4ts committed Jun 2, 2021
1 parent 59b05e7 commit 74cb76c
Show file tree
Hide file tree
Showing 37 changed files with 19,245 additions and 72 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ mongo-data*
report-templates
custom-generator.js
roles.json
app-settings.json

# Editor directories and files
.idea
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:lts-alpine
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
RUN apk --no-cache add --virtual builds-deps build-base python
RUN apk --no-cache add --virtual builds-deps build-base python git
RUN npm install
COPY . .
EXPOSE 4242
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:lts-alpine
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
RUN apk --no-cache add --virtual builds-deps build-base python
RUN apk --no-cache add --virtual builds-deps build-base python git
RUN npm install
ENV NODE_ENV dev
ENV NODE_ICU_DATA=node_modules/full-icu
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:lts-alpine
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
RUN apk --no-cache add --virtual builds-deps build-base python
RUN apk --no-cache add --virtual builds-deps build-base python git
ENV NODE_ENV test
ENV NODE_ICU_DATA=node_modules/full-icu
RUN npm install
Expand Down

0 comments on commit 74cb76c

Please sign in to comment.