Skip to content

Commit

Permalink
feat: update account password (#1)
Browse files Browse the repository at this point in the history
* feat: can update account password

* fix: prettier
  • Loading branch information
birme authored Nov 20, 2024
1 parent f9ce60e commit 3bdf707
Show file tree
Hide file tree
Showing 26 changed files with 13,744 additions and 32 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.next/
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
# Uncomment the line below if you need to use patch-package again
RUN --mount=type=secret,id=npmrc,target=/root/.npmrc \
npm ci;
RUN npm ci


# Rebuild the source code only when needed
Expand Down
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};
testEnvironment: 'node'
};
5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
2 changes: 1 addition & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"watch": ["src"],
"ext": "ts",
"exec": "node --inspect -r ts-node/register ./src/server.ts"
}
}
Loading

0 comments on commit 3bdf707

Please sign in to comment.