mirror of
https://github.com/zhx47/bakup.git
synced 2026-01-11 03:00:44 +08:00
encrypt
This commit is contained in:
commit
6568250358
59
.gitignore
vendored
Normal file
59
.gitignore
vendored
Normal 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
6
.prettierrc
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"printWidth": 180,
|
||||
"semi": true,
|
||||
"trailingComma": "all"
|
||||
}
|
||||
12
Dockerfile
Normal file
12
Dockerfile
Normal 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"]
|
||||
BIN
eslint.config.js
Normal file
BIN
eslint.config.js
Normal file
Binary file not shown.
BIN
nest-cli.json
Normal file
BIN
nest-cli.json
Normal file
Binary file not shown.
BIN
package.json
Normal file
BIN
package.json
Normal file
Binary file not shown.
BIN
src/app.module.ts
Normal file
BIN
src/app.module.ts
Normal file
Binary file not shown.
BIN
src/app_cluster.service.ts
Normal file
BIN
src/app_cluster.service.ts
Normal file
Binary file not shown.
BIN
src/config/cache.config.ts
Normal file
BIN
src/config/cache.config.ts
Normal file
Binary file not shown.
BIN
src/config/h5st.config.ts
Normal file
BIN
src/config/h5st.config.ts
Normal file
Binary file not shown.
BIN
src/controller/app.controller.ts
Normal file
BIN
src/controller/app.controller.ts
Normal file
Binary file not shown.
BIN
src/controller/dto/req.dto.ts
Normal file
BIN
src/controller/dto/req.dto.ts
Normal file
Binary file not shown.
BIN
src/controller/dto/res.dto.ts
Normal file
BIN
src/controller/dto/res.dto.ts
Normal file
Binary file not shown.
BIN
src/controller/h5st.controller.ts
Normal file
BIN
src/controller/h5st.controller.ts
Normal file
Binary file not shown.
BIN
src/factory/h5st.factory.ts
Normal file
BIN
src/factory/h5st.factory.ts
Normal file
Binary file not shown.
BIN
src/factory/token.factory.ts
Normal file
BIN
src/factory/token.factory.ts
Normal file
Binary file not shown.
BIN
src/filter/business-exception.filter.ts
Normal file
BIN
src/filter/business-exception.filter.ts
Normal file
Binary file not shown.
BIN
src/filter/validation-exception.filter.ts
Normal file
BIN
src/filter/validation-exception.filter.ts
Normal file
Binary file not shown.
BIN
src/main.ts
Normal file
BIN
src/main.ts
Normal file
Binary file not shown.
BIN
src/services/cache/cache.service.ts
vendored
Normal file
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
BIN
src/services/cache/none-cache.service.ts
vendored
Normal file
Binary file not shown.
BIN
src/services/h5st.service.ts
Normal file
BIN
src/services/h5st.service.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/baseH5st.ts
Normal file
BIN
src/services/h5st/baseH5st.ts
Normal file
Binary file not shown.
1
src/services/h5st/constant.ts
Normal file
1
src/services/h5st/constant.ts
Normal 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 $
|
||||
BIN
src/services/h5st/customAlgorithm.ts
Normal file
BIN
src/services/h5st/customAlgorithm.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.2.0.ts
Normal file
BIN
src/services/h5st/h5st4.2.0.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.3.1.ts
Normal file
BIN
src/services/h5st/h5st4.3.1.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.3.3.ts
Normal file
BIN
src/services/h5st/h5st4.3.3.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.4.0.ts
Normal file
BIN
src/services/h5st/h5st4.4.0.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.7.1.ts
Normal file
BIN
src/services/h5st/h5st4.7.1.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.7.2.ts
Normal file
BIN
src/services/h5st/h5st4.7.2.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.7.3.ts
Normal file
BIN
src/services/h5st/h5st4.7.3.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.7.4.ts
Normal file
BIN
src/services/h5st/h5st4.7.4.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.8.1.ts
Normal file
BIN
src/services/h5st/h5st4.8.1.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.8.2.ts
Normal file
BIN
src/services/h5st/h5st4.8.2.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/h5st4.9.1.ts
Normal file
BIN
src/services/h5st/h5st4.9.1.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/type.ts
Normal file
BIN
src/services/h5st/type.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/xcx3.1.0.ts
Normal file
BIN
src/services/h5st/xcx3.1.0.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/xcx4.2.0.ts
Normal file
BIN
src/services/h5st/xcx4.2.0.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/xcx4.7.1.ts
Normal file
BIN
src/services/h5st/xcx4.7.1.ts
Normal file
Binary file not shown.
BIN
src/services/h5st/xcx4.9.1.ts
Normal file
BIN
src/services/h5st/xcx4.9.1.ts
Normal file
Binary file not shown.
BIN
src/services/logger/winston.config.ts
Normal file
BIN
src/services/logger/winston.config.ts
Normal file
Binary file not shown.
BIN
src/services/token/baseLocalToken.ts
Normal file
BIN
src/services/token/baseLocalToken.ts
Normal file
Binary file not shown.
BIN
src/services/token/localTokenV3.ts
Normal file
BIN
src/services/token/localTokenV3.ts
Normal file
Binary file not shown.
BIN
src/services/token/localTokenV4.ts
Normal file
BIN
src/services/token/localTokenV4.ts
Normal file
Binary file not shown.
BIN
src/utils/baseUtils.ts
Normal file
BIN
src/utils/baseUtils.ts
Normal file
Binary file not shown.
BIN
src/utils/error.ts
Normal file
BIN
src/utils/error.ts
Normal file
Binary file not shown.
BIN
tsconfig.build.json
Normal file
BIN
tsconfig.build.json
Normal file
Binary file not shown.
BIN
tsconfig.json
Normal file
BIN
tsconfig.json
Normal file
Binary file not shown.
BIN
types/nestjs-cls.d.ts
vendored
Normal file
BIN
types/nestjs-cls.d.ts
vendored
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user