Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3f2cf77
fix(opt): :bug: apply class transformation on date
3FE3LE Aug 21, 2024
0aa33d8
feat(opt): :sparkles: add userId validation
3FE3LE Aug 22, 2024
9b044ad
feat(auth): :sparkles: expiration token validation added & define new…
3FE3LE Aug 23, 2024
4d11099
feat(opt): :passport_control: add guard on get endpoints to get user …
3FE3LE Sep 1, 2024
63cd949
feat(opt): :card_file_box: generate new migration with new relations
3FE3LE Sep 1, 2024
6a0f19f
fix(server): :bug: fix nest cli bug
3FE3LE Sep 1, 2024
c8fb381
feat(opt): :sparkles: add budget, activity & destination resources to…
3FE3LE Sep 1, 2024
f1b41ec
feat(opt): :sparkles: add destinies endpoint
3FE3LE Sep 2, 2024
b4bfada
feat(opt): :card_file_box: migration delete postal code & add country…
3FE3LE Sep 2, 2024
6d1eac4
perf(global): :zap: refine update-dtos using PartialType
3FE3LE Sep 2, 2024
927afa3
feat(opt): :card_file_box: migration add validations
3FE3LE Sep 2, 2024
eed8dec
feat(opt): :sparkles: add activity endpoints
3FE3LE Sep 2, 2024
d300985
feat(opt): :sparkles: add budget endpoints
3FE3LE Sep 2, 2024
8fc9c8f
chore(global): :memo: generate openapi.json file on root project & ad…
3FE3LE Sep 2, 2024
3060eaf
style(server): :art: format & remove useless code
3FE3LE Sep 2, 2024
25ac017
fix(opt): :fire: remove deprecated postacode property from destinatio…
3FE3LE Sep 2, 2024
2336c78
fix(opt): :bug: add @isEnum decorator to class-validation works properly
3FE3LE Sep 2, 2024
aa74456
feat(opt): :zap: add Trip entity, remove useGuard from findOne from s…
3FE3LE Sep 2, 2024
9f8db75
chore(global): :card_file_box: migration apply name change on destini…
3FE3LE Sep 5, 2024
b71a52c
chore(opt): :truck: rename destiny resources
3FE3LE Sep 5, 2024
a45e8c9
chore(opt): :adhesive_bandage: rename imports, & referencias to destiny
3FE3LE Sep 5, 2024
2250f8e
feat(global): :sparkles: implement token-user verification to detect …
3FE3LE Sep 6, 2024
d94e7e3
docs(global): :memo: update Api documentation with swagger decorators
3FE3LE Sep 6, 2024
9cf5e03
feat(opt): :sparkles: add getCurrency endponit
3FE3LE Sep 6, 2024
04f6788
refactor(opt): :poop: set actual param on controllers to query
3FE3LE Sep 8, 2024
42121a4
fix(opt): :bug: fix parameter on controllers routes
3FE3LE Sep 8, 2024
8180173
chore(global): :card_file_box: add MXN currency to db seed
3FE3LE Sep 14, 2024
0de6b4c
fix(server): :bug: fix error handling on fail DB connection
3FE3LE Sep 14, 2024
02a7d1a
feat(opt): :zap: add error handling on trip.service.ts
3FE3LE Sep 14, 2024
08d747c
chore(global): :card_file_box: migration add placeId property on Dest…
3FE3LE Sep 16, 2024
a9fedc3
feat(opt): :sparkles: upateTrip service
3FE3LE Sep 16, 2024
3e8944d
chore(opt): :card_file_box: migration, se new default value on trips
3FE3LE Sep 21, 2024
1d5e9d4
feat(opt): :card_file_box: add expenses models & respective migrations
3FE3LE Oct 26, 2024
f31b316
perf(global): :arrow_up: upgrade prisma
3FE3LE Oct 26, 2024
39637a9
fix(opt): :pencil2: fix trip property name from Expense to expenses
3FE3LE Oct 26, 2024
51c65d0
feat(opt): :sparkles: now can add current user as member of created t…
3FE3LE Oct 27, 2024
9ae2f5d
fix(docker): Update Node.js base image and fix build and run commands
3FE3LE Apr 10, 2025
c64c65f
fix(docker): Update Node.js base image to version 22.14.0-alpine3.20
3FE3LE Apr 10, 2025
bfc7b08
perf: :arrow_up: add migration SQL file to update primary keys and dr…
3FE3LE Apr 12, 2025
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/dist
/node_modules
.vscode
openapi.json

# Logs
logs
Expand Down Expand Up @@ -57,4 +58,3 @@ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
.vercel


dbschema/edgeql-js
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Usa una imagen base oficial de Node.js
FROM node:20.15
FROM node:22.14.0-alpine3.20

# Establece el directorio de trabajo
WORKDIR /app
Expand All @@ -17,10 +17,10 @@ COPY . .
RUN npx prisma generate

# Construye la aplicación NestJS
RUN npm run build
RUN node --run build
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Verify Node.js command syntax

The commands node --run build and CMD ["node", "--run", "start:prod"] use the --run flag which is not a standard Node.js flag. This appears to be an error and may prevent the container from building and running correctly.

The correct commands should likely be:

-RUN node --run build
+RUN npm run build
-CMD ["node", "--run", "start:prod"]
+CMD ["npm", "run", "start:prod"]

Please verify the intended command syntax.

Also applies to: 26-26


# Expone el puerto que usará la aplicación
EXPOSE 3000

# Comando para ejecutar la aplicación
CMD ["npm", "run", "start:prod"]
CMD ["node", "--run", "start:prod"]
Loading
Loading