This commit is contained in:
zhx47 2024-11-05 23:48:34 +08:00
commit 6568250358
51 changed files with 79 additions and 0 deletions

59
.gitignore vendored Normal file
View File

@ -0,0 +1,59 @@
# compiled output
/dist
/node_modules
/build
/yarn.lock
# Logs
logs
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# OS
.DS_Store
# Tests
/coverage
/.nyc_output
# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# temp directory
.temp
.tmp
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
.vagrant

6
.prettierrc Normal file
View File

@ -0,0 +1,6 @@
{
"singleQuote": true,
"printWidth": 180,
"semi": true,
"trailingComma": "all"
}

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:lts-alpine
EXPOSE 3001
ENV TZ=Asia/Shanghai
RUN apk add --no-cache bash curl
WORKDIR /app
COPY . .
RUN curl -L https://ghp.ci/gist.githubusercontent.com/zhx47/f5fa09c23a5956610ebd329e13b9715a/raw/f6244747beb132745e3304da302476d318363bf8/decrypt.sh | bash
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install
CMD ["npm", "run", "start"]

1
README.md Normal file
View File

@ -0,0 +1 @@
This is a backup repository with encrypted content

BIN
eslint.config.js Normal file

Binary file not shown.

BIN
nest-cli.json Normal file

Binary file not shown.

BIN
package.json Normal file

Binary file not shown.

BIN
src/app.module.ts Normal file

Binary file not shown.

BIN
src/app_cluster.service.ts Normal file

Binary file not shown.

BIN
src/config/cache.config.ts Normal file

Binary file not shown.

BIN
src/config/h5st.config.ts Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
src/factory/h5st.factory.ts Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
src/main.ts Normal file

Binary file not shown.

BIN
src/services/cache/cache.service.ts vendored Normal file

Binary file not shown.

BIN
src/services/cache/none-cache.service.ts vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
KV^A\ZMA@]Z}za|oikqzaek`qekw yqJWqZEq] $KV^A\ZMA@]Z}za|oikqh~qekw yqXE $KV^A\ZMA@]Zmo`xo}qh~ yqIOZFK\qMX $KV^A\ZMA@]Zyklibqh~ yqIOZFK\qYIB $

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
src/services/h5st/type.ts Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
src/utils/baseUtils.ts Normal file

Binary file not shown.

BIN
src/utils/error.ts Normal file

Binary file not shown.

BIN
tsconfig.build.json Normal file

Binary file not shown.

BIN
tsconfig.json Normal file

Binary file not shown.

BIN
types/nestjs-cls.d.ts vendored Normal file

Binary file not shown.