remove separate ui service, serve ui with backend
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s

This commit is contained in:
2025-07-18 01:54:26 +01:00
parent f9047644fe
commit e2c7faba5a
70 changed files with 153 additions and 11214 deletions

View File

@ -1,75 +1,61 @@
# Nuxt Minimal Starter
# assets
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
This template should help get you started developing with Vue 3 in Vite.
## Setup
## Recommended IDE Setup
Make sure to install dependencies:
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
```bash
# npm
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
### Compile and Hot-Reload for Development
Start the development server on `http://localhost:3000`:
```bash
# npm
```sh
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
### Type-Check, Compile and Minify for Production
Build the application for production:
```sh
npm run build
```
```bash
# npm
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
### Run End-to-End Tests with [Nightwatch](https://nightwatchjs.org/)
```sh
# When using CI, the project must be built first.
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chrome
npm run test:e2e -- --env chrome
# Runs the tests of a specific file
npm run test:e2e -- tests/e2e/example.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug
```
### Lint with [ESLint](https://eslint.org/)
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```sh
npm run lint
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.