Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add kafka and kafka-processor #89

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ src/assets/emails/dist/*
npm-debug.log
.idea
.vscode
data
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:12
EXPOSE 3001 8082
COPY ["./package.json", "./package-lock.json", ".eslintrc.js", ".eslintignore", "/app/"]
WORKDIR /app
RUN npm ci --quiet
RUN npm i --silent
COPY ./src /app/src

CMD npm start
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:12
EXPOSE 3001 8082
COPY ["./package.json", "./package-lock.json", "/app/"]
WORKDIR /app
RUN npm ci --quiet
RUN npm i --silent

VOLUME "/app/src"

Expand Down
6 changes: 6 additions & 0 deletions api-user-signup-handler/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:14.14-alpine
WORKDIR /app
COPY ["./package*.json", "./"]
RUN npm install --silent
COPY . .
CMD npm run start
6 changes: 6 additions & 0 deletions api-user-signup-handler/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:14.14
WORKDIR /app
COPY ["./package*.json", "./"]
RUN npm install --silent
COPY . .
CMD npm run development
Loading