├── .DS_Store
├── .dockerignore
├── .editorconfig
├── .gitignore
├── README.md
├── backend
├── .gitignore
├── README.md
├── eslint.config.js
├── nest-cli.json
├── package.json
├── src
│ ├── app.controller.ts
│ ├── app.module.ts
│ ├── app.service.ts
│ └── main.ts
├── test
│ ├── app.e2e-spec.ts
│ └── jest-e2e.json
├── tsconfig.build.json
└── tsconfig.json
├── eslint.config.js
├── frontend
├── .dockerignore
├── .editorconfig
├── .github
│ └── workflows
│ │ └── ci.yml
├── .vscode
│ ├── extensions.json
│ └── settings.json
├── Dockerfile
├── LICENSE
├── README.md
├── README.zh-CN.md
├── cypress.config.ts
├── cypress
│ ├── e2e
│ │ └── basic.spec.ts
│ └── tsconfig.json
├── eslint.config.js
├── index.html
├── locales
│ ├── README.md
│ ├── ar.yml
│ ├── de.yml
│ ├── en.yml
│ ├── es.yml
│ ├── fr.yml
│ ├── id.yml
│ ├── it.yml
│ ├── ja.yml
│ ├── ka.yml
│ ├── ko.yml
│ ├── pl.yml
│ ├── pt-BR.yml
│ ├── ru.yml
│ ├── tr.yml
│ ├── uk.yml
│ ├── uz.yml
│ ├── vi.yml
│ └── zh-CN.yml
├── netlify.toml
├── package.json
├── public
│ ├── _headers
│ ├── favicon-dark.svg
│ ├── favicon.svg
│ ├── pwa-192x192.png
│ ├── pwa-512x512.png
│ └── safari-pinned-tab.svg
├── src
│ ├── App.vue
│ ├── auto-imports.d.ts
│ ├── components.d.ts
│ ├── components
│ │ ├── README.md
│ │ ├── TheCounter.vue
│ │ ├── TheFooter.vue
│ │ └── TheInput.vue
│ ├── composables
│ │ └── dark.ts
│ ├── layouts
│ │ ├── 404.vue
│ │ ├── README.md
│ │ ├── default.vue
│ │ └── home.vue
│ ├── main.ts
│ ├── modules
│ │ ├── README.md
│ │ ├── i18n.ts
│ │ ├── nprogress.ts
│ │ ├── pinia.ts
│ │ └── pwa.ts
│ ├── pages
│ │ ├── README.md
│ │ ├── [...all].vue
│ │ ├── about.md
│ │ ├── hi
│ │ │ └── [name].vue
│ │ └── index.vue
│ ├── shims.d.ts
│ ├── stores
│ │ └── user.ts
│ ├── styles
│ │ ├── main.css
│ │ └── markdown.css
│ ├── typed-router.d.ts
│ └── types.ts
├── test
│ ├── __snapshots__
│ │ └── component.test.ts.snap
│ ├── basic.test.ts
│ └── component.test.ts
├── tsconfig.json
├── uno.config.ts
└── vite.config.ts
├── package.json
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
└── vitest.workspace.ts
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Groupguanfang/bt/5ffd4bf25b8f9640d55397fce182bf43671e98ed/.DS_Store
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # compiled output
2 | dist
3 | node_modules
4 | build
5 |
6 | # Logs
7 | logs
8 | *.log
9 | npm-debug.log*
10 | pnpm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 | lerna-debug.log*
14 |
15 | # OS
16 | .DS_Store
17 |
18 | # Tests
19 | coverage
20 | .nyc_output
21 |
22 | # IDEs and editors
23 | .idea
24 | .project
25 | .classpath
26 | .c9/
27 | *.launch
28 | .settings/
29 | *.sublime-workspace
30 |
31 | # IDE - VSCode
32 | .vscode/*
33 | !.vscode/tasks.json
34 | !.vscode/launch.json
35 | !.vscode/extensions.json
36 |
37 | # dotenv environment variable files
38 | .env
39 | .env.development.local
40 | .env.test.local
41 | .env.production.local
42 | .env.local
43 |
44 | # temp directory
45 | .temp
46 | .tmp
47 |
48 | # Runtime data
49 | pids
50 | *.pid
51 | *.seed
52 | *.pid.lock
53 |
54 | # Diagnostic reports (https://nodejs.org/api/report.html)
55 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
56 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Monorepo
2 |
3 | > There are no descriptions for this repository.
4 |
--------------------------------------------------------------------------------
/backend/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Groupguanfang/bt/5ffd4bf25b8f9640d55397fce182bf43671e98ed/backend/.gitignore
--------------------------------------------------------------------------------
/backend/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | [circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
6 | [circleci-url]: https://circleci.com/gh/nestjs/nest
7 |
8 | A progressive Node.js framework for building efficient and scalable server-side applications.
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
24 |
25 | ## Description
26 |
27 | [Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
28 |
29 | ## Project setup
30 |
31 | ```bash
32 | $ pnpm install
33 | ```
34 |
35 | ## Compile and run the project
36 |
37 | ```bash
38 | # development
39 | $ pnpm run start
40 |
41 | # watch mode
42 | $ pnpm run start:dev
43 |
44 | # production mode
45 | $ pnpm run start:prod
46 | ```
47 |
48 | ## Run tests
49 |
50 | ```bash
51 | # unit tests
52 | $ pnpm run test
53 |
54 | # e2e tests
55 | $ pnpm run test:e2e
56 |
57 | # test coverage
58 | $ pnpm run test:cov
59 | ```
60 |
61 | ## Deployment
62 |
63 | When you're ready to deploy your NestJS application to production, there are some key steps you can take to ensure it runs as efficiently as possible. Check out the [deployment documentation](https://docs.nestjs.com/deployment) for more information.
64 |
65 | If you are looking for a cloud-based platform to deploy your NestJS application, check out [Mau](https://mau.nestjs.com), our official platform for deploying NestJS applications on AWS. Mau makes deployment straightforward and fast, requiring just a few simple steps:
66 |
67 | ```bash
68 | $ pnpm install -g mau
69 | $ mau deploy
70 | ```
71 |
72 | With Mau, you can deploy your application in just a few clicks, allowing you to focus on building features rather than managing infrastructure.
73 |
74 | ## Resources
75 |
76 | Check out a few resources that may come in handy when working with NestJS:
77 |
78 | - Visit the [NestJS Documentation](https://docs.nestjs.com) to learn more about the framework.
79 | - For questions and support, please visit our [Discord channel](https://discord.gg/G7Qnnhy).
80 | - To dive deeper and get more hands-on experience, check out our official video [courses](https://courses.nestjs.com/).
81 | - Deploy your application to AWS with the help of [NestJS Mau](https://mau.nestjs.com) in just a few clicks.
82 | - Visualize your application graph and interact with the NestJS application in real-time using [NestJS Devtools](https://devtools.nestjs.com).
83 | - Need help with your project (part-time to full-time)? Check out our official [enterprise support](https://enterprise.nestjs.com).
84 | - To stay in the loop and get updates, follow us on [X](https://x.com/nestframework) and [LinkedIn](https://linkedin.com/company/nestjs).
85 | - Looking for a job, or have a job to offer? Check out our official [Jobs board](https://jobs.nestjs.com).
86 |
87 | ## Support
88 |
89 | Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
90 |
91 | ## Stay in touch
92 |
93 | - Author - [Kamil Myśliwiec](https://twitter.com/kammysliwiec)
94 | - Website - [https://nestjs.com](https://nestjs.com/)
95 | - Twitter - [@nestframework](https://twitter.com/nestframework)
96 |
97 | ## License
98 |
99 | Nest is [MIT licensed](https://github.com/nestjs/nest/blob/master/LICENSE).
100 |
--------------------------------------------------------------------------------
/backend/eslint.config.js:
--------------------------------------------------------------------------------
1 | import antfu from '@antfu/eslint-config'
2 |
3 | export default antfu({
4 | rules: {
5 | 'ts/consistent-type-imports': 'off',
6 | },
7 | })
8 |
--------------------------------------------------------------------------------
/backend/nest-cli.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/nest-cli",
3 | "collection": "@nestjs/schematics",
4 | "sourceRoot": "src",
5 | "compilerOptions": {
6 | "deleteOutDir": true
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/backend/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "backend",
3 | "type": "module",
4 | "version": "0.0.1",
5 | "private": true,
6 | "description": "",
7 | "author": "Naily Zero ",
8 | "scripts": {
9 | "build": "nest build",
10 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
11 | "start": "nest start",
12 | "start:dev": "nest start --watch",
13 | "start:debug": "nest start --debug --watch",
14 | "start:prod": "node dist/main",
15 | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
16 | "test": "jest",
17 | "test:watch": "jest --watch",
18 | "test:cov": "jest --coverage",
19 | "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
20 | "test:e2e": "jest --config ./test/jest-e2e.json"
21 | },
22 | "dependencies": {
23 | "@nestjs/common": "^10.0.0",
24 | "@nestjs/core": "10.3.6",
25 | "@nestjs/platform-express": "^10.0.0",
26 | "nestjs-trpc": "^1.5.1",
27 | "reflect-metadata": "^0.2.0",
28 | "rxjs": "^7.8.1"
29 | },
30 | "devDependencies": {
31 | "@nestjs/cli": "^10.0.0",
32 | "@nestjs/schematics": "^10.0.0",
33 | "@nestjs/testing": "^10.0.0",
34 | "@types/express": "^5.0.0",
35 | "@types/jest": "^29.5.2",
36 | "@types/node": "^20.3.1",
37 | "@types/supertest": "^6.0.0",
38 | "@typescript-eslint/eslint-plugin": "^8.0.0",
39 | "@typescript-eslint/parser": "^8.0.0",
40 | "eslint": "^9.0.0",
41 | "eslint-config-prettier": "^9.0.0",
42 | "eslint-plugin-prettier": "^5.0.0",
43 | "jest": "^29.5.0",
44 | "prettier": "^3.0.0",
45 | "source-map-support": "^0.5.21",
46 | "supertest": "^7.0.0",
47 | "ts-jest": "^29.1.0",
48 | "ts-loader": "^9.4.3",
49 | "ts-node": "^10.9.1",
50 | "tsconfig-paths": "^4.2.0",
51 | "typescript": "^5.1.3"
52 | },
53 | "jest": {
54 | "moduleFileExtensions": [
55 | "js",
56 | "json",
57 | "ts"
58 | ],
59 | "rootDir": "src",
60 | "testRegex": ".*\\.spec\\.ts$",
61 | "transform": {
62 | "^.+\\.(t|j)s$": "ts-jest"
63 | },
64 | "collectCoverageFrom": [
65 | "**/*.(t|j)s"
66 | ],
67 | "coverageDirectory": "../coverage",
68 | "testEnvironment": "node"
69 | }
70 | }
71 |
--------------------------------------------------------------------------------
/backend/src/app.controller.ts:
--------------------------------------------------------------------------------
1 | import type { AppService } from './app.service'
2 | import { Controller, Get } from '@nestjs/common'
3 |
4 | @Controller()
5 | export class AppController {
6 | constructor(private readonly appService: AppService) {}
7 |
8 | @Get()
9 | getHello(): string {
10 | return this.appService.getHello()
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/backend/src/app.module.ts:
--------------------------------------------------------------------------------
1 | import { Module } from '@nestjs/common'
2 | import { TRPCModule } from 'nestjs-trpc'
3 | import { AppController } from './app.controller'
4 | import { AppService } from './app.service'
5 |
6 | @Module({
7 | imports: [
8 | TRPCModule.forRoot({
9 | autoSchemaFile: './src/@generated',
10 | }),
11 | ],
12 | controllers: [AppController],
13 | providers: [AppService],
14 | })
15 | export class AppModule {}
16 |
--------------------------------------------------------------------------------
/backend/src/app.service.ts:
--------------------------------------------------------------------------------
1 | import { Injectable } from '@nestjs/common'
2 |
3 | @Injectable()
4 | export class AppService {
5 | getHello(): string {
6 | return 'Hello World!'
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/backend/src/main.ts:
--------------------------------------------------------------------------------
1 | import { env } from 'node:process'
2 | import { NestFactory } from '@nestjs/core'
3 | import { AppModule } from './app.module'
4 |
5 | async function bootstrap() {
6 | const app = await NestFactory.create(AppModule)
7 | await app.listen(env.PORT ?? 3000)
8 | }
9 | bootstrap()
10 |
--------------------------------------------------------------------------------
/backend/test/app.e2e-spec.ts:
--------------------------------------------------------------------------------
1 | import type { INestApplication } from '@nestjs/common'
2 | import type { TestingModule } from '@nestjs/testing'
3 | import { Test } from '@nestjs/testing'
4 | import * as request from 'supertest'
5 | import { AppModule } from './../src/app.module'
6 |
7 | describe('AppController (e2e)', () => {
8 | let app: INestApplication
9 |
10 | beforeEach(async () => {
11 | const moduleFixture: TestingModule = await Test.createTestingModule({
12 | imports: [AppModule],
13 | }).compile()
14 |
15 | app = moduleFixture.createNestApplication()
16 | await app.init()
17 | })
18 |
19 | it('/ (GET)', () => {
20 | return request(app.getHttpServer())
21 | .get('/')
22 | .expect(200)
23 | .expect('Hello World!')
24 | })
25 | })
26 |
--------------------------------------------------------------------------------
/backend/test/jest-e2e.json:
--------------------------------------------------------------------------------
1 | {
2 | "moduleFileExtensions": ["js", "json", "ts"],
3 | "rootDir": ".",
4 | "testEnvironment": "node",
5 | "testRegex": ".e2e-spec.ts$",
6 | "transform": {
7 | "^.+\\.(t|j)s$": "ts-jest"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/backend/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
4 | }
5 |
--------------------------------------------------------------------------------
/backend/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "incremental": true,
4 | "target": "ES2021",
5 | "emitDecoratorMetadata": true,
6 | "experimentalDecorators": true,
7 | "baseUrl": "./",
8 | "module": "commonjs",
9 | "strictBindCallApply": false,
10 | "strictNullChecks": false,
11 | "noFallthroughCasesInSwitch": false,
12 | "noImplicitAny": false,
13 | "declaration": true,
14 | "outDir": "./dist",
15 | "removeComments": true,
16 | "sourceMap": true,
17 | "allowSyntheticDefaultImports": true,
18 | "forceConsistentCasingInFileNames": false,
19 | "skipLibCheck": true
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/eslint.config.js:
--------------------------------------------------------------------------------
1 | import antfu from '@antfu/eslint-config'
2 |
3 | export default antfu({
4 | rules: {},
5 | })
6 |
--------------------------------------------------------------------------------
/frontend/.dockerignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/frontend/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
--------------------------------------------------------------------------------
/frontend/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 |
3 | on:
4 | push:
5 | branches:
6 | - main
7 |
8 | pull_request:
9 | branches:
10 | - main
11 |
12 | jobs:
13 | lint:
14 | runs-on: ubuntu-latest
15 | steps:
16 | - uses: actions/checkout@v4
17 | - uses: pnpm/action-setup@v3
18 | - uses: actions/setup-node@v4
19 | with:
20 | node-version: lts/*
21 | cache: pnpm
22 |
23 | - name: Install
24 | run: pnpm install
25 |
26 | - name: Lint
27 | run: pnpm run lint
28 |
29 | typecheck:
30 | runs-on: ubuntu-latest
31 | steps:
32 | - uses: actions/checkout@v4
33 | - uses: pnpm/action-setup@v3
34 | - uses: actions/setup-node@v4
35 | with:
36 | node-version: lts/*
37 | cache: pnpm
38 |
39 | - name: Install
40 | run: pnpm install
41 |
42 | - name: Typecheck
43 | run: pnpm run typecheck
44 |
45 | test:
46 | runs-on: ${{ matrix.os }}
47 |
48 | strategy:
49 | matrix:
50 | node-version: [18.x, 20.x]
51 | os: [ubuntu-latest]
52 | fail-fast: false
53 |
54 | steps:
55 | - uses: actions/checkout@v4
56 | - uses: pnpm/action-setup@v3
57 | - name: Use Node.js ${{ matrix.node-version }}
58 | uses: actions/setup-node@v4
59 | with:
60 | node-version: ${{ matrix.node-version }}
61 | registry-url: https://registry.npmjs.org/
62 | cache: pnpm
63 |
64 | - run: pnpm install
65 | - run: pnpm run test:unit
66 |
67 | test-e2e:
68 | runs-on: ubuntu-latest
69 | steps:
70 | - uses: actions/checkout@v4
71 | - uses: actions/cache@v4
72 | with:
73 | path: |
74 | ~/.cache
75 | key: cypress-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
76 |
77 | - uses: pnpm/action-setup@v3
78 |
79 | - name: Use Node.js
80 | uses: actions/setup-node@v4
81 | with:
82 | node-version: lts/*
83 | registry-url: https://registry.npmjs.org/
84 | cache: pnpm
85 |
86 | - run: pnpm install
87 |
88 | - name: Cypress PNPM Patch
89 | run: cp pnpm-lock.yaml package-lock.json
90 |
91 | - name: Cypress
92 | uses: cypress-io/github-action@v6
93 | with:
94 | install-command: echo
95 | build: pnpm run build
96 | start: npx vite preview --port 3333
97 |
--------------------------------------------------------------------------------
/frontend/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": [
3 | "antfu.iconify",
4 | "antfu.unocss",
5 | "antfu.vite",
6 | "antfu.goto-alias",
7 | "csstools.postcss",
8 | "dbaeumer.vscode-eslint",
9 | "vue.volar",
10 | "lokalise.i18n-ally",
11 | "streetsidesoftware.code-spell-checker"
12 | ]
13 | }
14 |
--------------------------------------------------------------------------------
/frontend/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "cSpell.words": [
3 | "antfu",
4 | "demi",
5 | "iconify",
6 | "intlify",
7 | "nprogress",
8 | "pinia",
9 | "pnpm",
10 | "shiki",
11 | "shikijs",
12 | "sizecheck",
13 | "taze",
14 | "typecheck",
15 | "unhead",
16 | "unocss",
17 | "unplugin",
18 | "Vite",
19 | "vitejs",
20 | "Vitesse",
21 | "vitest",
22 | "vueuse",
23 | "webfont"
24 | ],
25 | "i18n-ally.sourceLanguage": "en",
26 | "i18n-ally.keystyle": "nested",
27 | "i18n-ally.localesPaths": "locales",
28 | "i18n-ally.sortKeys": true,
29 |
30 | // Disable the default formatter
31 | "prettier.enable": false,
32 | "editor.formatOnSave": false,
33 |
34 | // Auto fix
35 | "editor.codeActionsOnSave": {
36 | "source.fixAll.eslint": "explicit",
37 | "source.organizeImports": "never"
38 | },
39 |
40 | // Silent the stylistic rules in you IDE, but still auto fix them
41 | "eslint.rules.customizations": [
42 | { "rule": "style/*", "severity": "off" },
43 | { "rule": "format/*", "severity": "off" },
44 | { "rule": "*-indent", "severity": "off" },
45 | { "rule": "*-spacing", "severity": "off" },
46 | { "rule": "*-spaces", "severity": "off" },
47 | { "rule": "*-order", "severity": "off" },
48 | { "rule": "*-dangle", "severity": "off" },
49 | { "rule": "*-newline", "severity": "off" },
50 | { "rule": "*quotes", "severity": "off" },
51 | { "rule": "*semi", "severity": "off" }
52 | ],
53 |
54 | // The following is optional.
55 | // It's better to put under project setting `.vscode/settings.json`
56 | // to avoid conflicts with working with different eslint configs
57 | // that does not support all formats.
58 | "eslint.validate": [
59 | "javascript",
60 | "javascriptreact",
61 | "typescript",
62 | "typescriptreact",
63 | "vue",
64 | "html",
65 | "markdown",
66 | "json",
67 | "jsonc",
68 | "yaml"
69 | ]
70 | }
71 |
--------------------------------------------------------------------------------
/frontend/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM node:20-alpine as build-stage
2 |
3 | WORKDIR /app
4 | RUN corepack enable
5 |
6 | COPY .npmrc package.json pnpm-lock.yaml ./
7 | RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
8 | pnpm install --frozen-lockfile
9 |
10 | COPY . .
11 | RUN pnpm build
12 |
13 | FROM nginx:stable-alpine as production-stage
14 |
15 | COPY --from=build-stage /app/dist /usr/share/nginx/html
16 | EXPOSE 80
17 |
18 | CMD ["nginx", "-g", "daemon off;"]
19 |
--------------------------------------------------------------------------------
/frontend/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020-PRESENT Anthony Fu
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/frontend/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Mocking up web app with Vitesse (speed)
7 |
8 |
9 |
10 |
11 |
12 | Live Demo
13 |
14 |
15 |
16 |
17 | > **Note**: This template is created during the early transition of Vue 3 and Vite. At this moment, if you are seeking for better Vue developer experience and more consistent maintenance, we recommend using [Nuxt 3](https://nuxt.com) instead (it also works perfectly with SPA or SSG as needed). This template still serves as a reference, but expect slower updates.
18 |
19 |
20 |
21 |
22 | English | 简体中文
23 |
24 |
25 |
26 |
27 |
28 | ## Features
29 |
30 | - ⚡️ [Vue 3](https://github.com/vuejs/core), [Vite](https://github.com/vitejs/vite), [pnpm](https://pnpm.io/), [esbuild](https://github.com/evanw/esbuild) - born with fastness
31 |
32 | - 🗂 [File based routing](./src/pages)
33 |
34 | - 📦 [Components auto importing](./src/components)
35 |
36 | - 🍍 [State Management via Pinia](https://pinia.vuejs.org/)
37 |
38 | - 📑 [Layout system](./src/layouts)
39 |
40 | - 📲 [PWA](https://github.com/antfu/vite-plugin-pwa)
41 |
42 | - 🎨 [UnoCSS](https://github.com/antfu/unocss) - the instant on-demand atomic CSS engine
43 |
44 | - 😃 [Use icons from any icon sets with classes](https://github.com/antfu/unocss/tree/main/packages/preset-icons)
45 |
46 | - 🌍 [I18n ready](./locales)
47 |
48 | - 🔎 [Component Preview](https://github.com/johnsoncodehk/vite-plugin-vue-component-preview)
49 |
50 | - 🗒 [Markdown Support](https://github.com/unplugin/unplugin-vue-markdown)
51 |
52 | - 🔥 Use the [new `
17 |
18 |
19 |
20 |
21 | This website requires JavaScript to function properly. Please enable JavaScript to continue.
22 |
23 |