Skip to content

Commit

Permalink
Added Relic Logs
Browse files Browse the repository at this point in the history
  • Loading branch information
anoopkarnik committed Jul 13, 2024
1 parent 015c46c commit cc685b0
Show file tree
Hide file tree
Showing 5 changed files with 1,404 additions and 52 deletions.
1 change: 1 addition & 0 deletions apps/backend-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"cors": "^2.8.5",
"cron-parser": "^4.9.0",
"express": "^4.19.2",
"newrelic": "^11.23.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ActionSelect = ({type,options,node}:any) => {
<SelectItem key={option.actionType} value={option.actionType}>
<div className='flex items-center justify-start gap-4'>
{option.icon && <option.icon/> }
{option.image && <Image src={option.image} alt={''} className='w-6 h-6'/>}
{option.image && <Image src={option.image} alt={''} width={20} height={20}/>}
<div>{option.actionType}</div>
</div>

Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.backend-server
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ COPY package.json package-lock.json turbo.json tsconfig.json ./
COPY apps/backend-server ./apps/backend-server
COPY packages ./packages

ENV NEW_RELIC_DISTRIBUTED_TRACING_ENABLED=true
ENV NEW_RELIC_LOG=stdout

RUN npm install
RUN npm run db:generate

Expand Down
Loading

0 comments on commit cc685b0

Please sign in to comment.