Skip to content

Commit 61f0757

Browse files
committed
Merge branch 'master' into api-gateway
2 parents 13ae030 + 14726cb commit 61f0757

31 files changed

+2607
-210
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ POSTGRES_DB="user-service"
66
PG_PORT=5432
77
SECRET_KEY=
88

9+
REDIS_PASSWORD=

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@
2222

2323
npm-debug.log*
2424
yarn-debug.log*
25-
yarn-error.log*
26-
frontend/package-lock.json
25+
yarn-error.log*

code_execution/.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
npm-debug.log

code_execution/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM node:18-alpine
2+
WORKDIR /usr/src/app
3+
COPY package*.json ./
4+
RUN npm install
5+
# RUN npm ci --omit=dev
6+
COPY . .
7+
EXPOSE 8090
8+
CMD ["npm", "run", "start"]

code_execution/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Quickstart
2+
3+
1. Start the server on Local Host
4+
- Run `npm start`
5+
2. Run the test.js file
6+
3. Navigate to debug console for output

0 commit comments

Comments
 (0)