更新了CI脚本和REAME.md,删除了dist、cache等构建的文件
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				CI/CD Pipeline for mengning.com.cn / build (push) Failing after 1m47s
				
			
		
		
	
	
				
					
				
			
		
			Some checks failed
		
		
	
	CI/CD Pipeline for mengning.com.cn / build (push) Failing after 1m47s
				
			This commit is contained in:
		@@ -1,6 +1,11 @@
 | 
			
		||||
name: CI Pipeline
 | 
			
		||||
 
 | 
			
		||||
on: [push, pull_request]
 | 
			
		||||
name: CI/CD Pipeline for mengning.com.cn
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches:
 | 
			
		||||
      - main
 | 
			
		||||
  pull_request:
 | 
			
		||||
    branches:
 | 
			
		||||
      - main
 | 
			
		||||
 
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
@@ -27,31 +32,22 @@ jobs:
 | 
			
		||||
 
 | 
			
		||||
      - name: 构建 Docker 镜像
 | 
			
		||||
        run: |
 | 
			
		||||
          docker build -t mengningsoftware-docs:${{ gitea.sha }} .
 | 
			
		||||
          docker build -t devstar-docs:${{ gitea.sha }} .
 | 
			
		||||
 
 | 
			
		||||
      - name: 登录 Docker Registry 并推送镜像
 | 
			
		||||
        run: |
 | 
			
		||||
          echo "${{ secrets.DOCKER_REGISTRY_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_REGISTRY_USERNAME }} ${{ vars.DOCKER_REGISTRY_ADDRESS }} --password-stdin
 | 
			
		||||
          docker tag mengningsoftware-docs:${{ gitea.sha }} ${{ vars.DOCKER_REGISTRY_ADDRESS }}/mengningsoftware/docs:${{ gitea.sha }}
 | 
			
		||||
          docker tag mengningsoftware-docs:${{ gitea.sha }} ${{ vars.DOCKER_REGISTRY_ADDRESS }}/mengningsoftware/docs:latest
 | 
			
		||||
          docker push ${{ vars.DOCKER_REGISTRY_ADDRESS }}/mengningsoftware/docs:${{ gitea.sha }}
 | 
			
		||||
          docker push ${{ vars.DOCKER_REGISTRY_ADDRESS }}/mengningsoftware/docs:latest    
 | 
			
		||||
          docker tag devstar-docs:${{ gitea.sha }} ${{ vars.DOCKER_REGISTRY_ADDRESS }}/devstar/devstar-studio-docs:${{ gitea.sha }}
 | 
			
		||||
          docker tag devstar-docs:${{ gitea.sha }} ${{ vars.DOCKER_REGISTRY_ADDRESS }}/devstar/devstar-studio-docs:latest
 | 
			
		||||
          docker push ${{ vars.DOCKER_REGISTRY_ADDRESS }}/devstar/devstar-studio-docs:${{ gitea.sha }}
 | 
			
		||||
          docker push ${{ vars.DOCKER_REGISTRY_ADDRESS }}/devstar/devstar-studio-docs:latest    
 | 
			
		||||
 | 
			
		||||
      - name: 安装 kubectl
 | 
			
		||||
      - name: 📝 Update mengning.com.cn
 | 
			
		||||
        run: |
 | 
			
		||||
          curl -LO https://mirrors.ustc.edu.cn/kubernetes/core%3A/stable%3A/v1.28/deb/amd64/kubectl_1.28.0-1.1_amd64.deb
 | 
			
		||||
          sudo dpkg -i kubectl_1.28.0-1.1_amd64.deb
 | 
			
		||||
 
 | 
			
		||||
      - name: 配置 kubeconfig
 | 
			
		||||
        env:
 | 
			
		||||
          KUBECONFIG_CONTENT: ${{ secrets.KUBECONFIG_CONTENT }}
 | 
			
		||||
        run: |
 | 
			
		||||
          mkdir -p ~/.kube
 | 
			
		||||
          echo "$KUBECONFIG_CONTENT" > ~/.kube/config          
 | 
			
		||||
 
 | 
			
		||||
      - name: 部署到 Kubernetes
 | 
			
		||||
        run: |
 | 
			
		||||
          kubectl set image deployment/docs-app \
 | 
			
		||||
              docs=${{ vars.DOCKER_REGISTRY_ADDRESS }}/mengningsoftware/docs:${{ gitea.sha }} \
 | 
			
		||||
              -n app
 | 
			
		||||
          kubectl rollout status deployment/docs-app -n app
 | 
			
		||||
          kubectl config set-cluster remote-cluster --server=${{ secrets.K8S_URL }} --insecure-skip-tls-verify=true
 | 
			
		||||
          kubectl config set-credentials token-user --token=${{ secrets.K8S_TOKEN }}
 | 
			
		||||
          kubectl config set-context remote-context --cluster=remote-cluster --user=token-user
 | 
			
		||||
          kubectl config use-context remote-context
 | 
			
		||||
          kubectl set image deployment/devstar-docs-app   devstar-docs=${{ vars.DOCKER_REGISTRY_ADDRESS }}/devstar/devstar-studio-docs:latest -n app
 | 
			
		||||
							
								
								
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,7 +1,7 @@
 | 
			
		||||
# VitePress
 | 
			
		||||
.vitepress/dist/
 | 
			
		||||
.vitepress/cache/
 | 
			
		||||
.vitepress/.temp/
 | 
			
		||||
docs/.vitepress/dist/
 | 
			
		||||
docs/.vitepress/cache/
 | 
			
		||||
docs/.vitepress/.temp/
 | 
			
		||||
 | 
			
		||||
# Node.js
 | 
			
		||||
node_modules/
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										13
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								README.md
									
									
									
									
									
								
							@@ -1,6 +1,13 @@
 | 
			
		||||
# devstar介绍文档
 | 
			
		||||
# 梦宁软件官网及DevStar文档
 | 
			
		||||
 | 
			
		||||
## 如何启动项目
 | 
			
		||||
## 配置开发环境
 | 
			
		||||
 | 
			
		||||
```md
 | 
			
		||||
npm install
 | 
			
		||||
npm add -D vitepress
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## 如何启动调试项目
 | 
			
		||||
```md
 | 
			
		||||
npm run docs:dev
 | 
			
		||||
```
 | 
			
		||||
@@ -8,7 +15,7 @@ npm run docs:dev
 | 
			
		||||
```md
 | 
			
		||||
npm run docs:build
 | 
			
		||||
```
 | 
			
		||||
## 如何预览项目
 | 
			
		||||
## 如何预览打包的项目
 | 
			
		||||
```md
 | 
			
		||||
npm run docs:preview
 | 
			
		||||
```
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										52
									
								
								docs/.vitepress/cache/deps/_metadata.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										52
									
								
								docs/.vitepress/cache/deps/_metadata.json
									
									
									
									
										vendored
									
									
								
							@@ -1,52 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "hash": "67deff6d",
 | 
			
		||||
  "configHash": "1dac5a9a",
 | 
			
		||||
  "lockfileHash": "6c0339f1",
 | 
			
		||||
  "browserHash": "b4159a4a",
 | 
			
		||||
  "optimized": {
 | 
			
		||||
    "vue": {
 | 
			
		||||
      "src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js",
 | 
			
		||||
      "file": "vue.js",
 | 
			
		||||
      "fileHash": "18b7d3f9",
 | 
			
		||||
      "needsInterop": false
 | 
			
		||||
    },
 | 
			
		||||
    "vitepress > @vue/devtools-api": {
 | 
			
		||||
      "src": "../../../../node_modules/@vue/devtools-api/dist/index.js",
 | 
			
		||||
      "file": "vitepress___@vue_devtools-api.js",
 | 
			
		||||
      "fileHash": "6239abda",
 | 
			
		||||
      "needsInterop": false
 | 
			
		||||
    },
 | 
			
		||||
    "vitepress > @vueuse/core": {
 | 
			
		||||
      "src": "../../../../node_modules/@vueuse/core/index.mjs",
 | 
			
		||||
      "file": "vitepress___@vueuse_core.js",
 | 
			
		||||
      "fileHash": "b6d2263c",
 | 
			
		||||
      "needsInterop": false
 | 
			
		||||
    },
 | 
			
		||||
    "vitepress > @vueuse/integrations/useFocusTrap": {
 | 
			
		||||
      "src": "../../../../node_modules/@vueuse/integrations/useFocusTrap.mjs",
 | 
			
		||||
      "file": "vitepress___@vueuse_integrations_useFocusTrap.js",
 | 
			
		||||
      "fileHash": "1ef660e4",
 | 
			
		||||
      "needsInterop": false
 | 
			
		||||
    },
 | 
			
		||||
    "vitepress > mark.js/src/vanilla.js": {
 | 
			
		||||
      "src": "../../../../node_modules/mark.js/src/vanilla.js",
 | 
			
		||||
      "file": "vitepress___mark__js_src_vanilla__js.js",
 | 
			
		||||
      "fileHash": "09a98ea6",
 | 
			
		||||
      "needsInterop": false
 | 
			
		||||
    },
 | 
			
		||||
    "vitepress > minisearch": {
 | 
			
		||||
      "src": "../../../../node_modules/minisearch/dist/es/index.js",
 | 
			
		||||
      "file": "vitepress___minisearch.js",
 | 
			
		||||
      "fileHash": "5636acbc",
 | 
			
		||||
      "needsInterop": false
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "chunks": {
 | 
			
		||||
    "chunk-QSBXJHLQ": {
 | 
			
		||||
      "file": "chunk-QSBXJHLQ.js"
 | 
			
		||||
    },
 | 
			
		||||
    "chunk-JBP73PM7": {
 | 
			
		||||
      "file": "chunk-JBP73PM7.js"
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										12644
									
								
								docs/.vitepress/cache/deps/chunk-JBP73PM7.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										12644
									
								
								docs/.vitepress/cache/deps/chunk-JBP73PM7.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										9719
									
								
								docs/.vitepress/cache/deps/chunk-QSBXJHLQ.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9719
									
								
								docs/.vitepress/cache/deps/chunk-QSBXJHLQ.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										3
									
								
								docs/.vitepress/cache/deps/package.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								docs/.vitepress/cache/deps/package.json
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "module"
 | 
			
		||||
}
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -1,583 +0,0 @@
 | 
			
		||||
import {
 | 
			
		||||
  DefaultMagicKeysAliasMap,
 | 
			
		||||
  StorageSerializers,
 | 
			
		||||
  TransitionPresets,
 | 
			
		||||
  assert,
 | 
			
		||||
  breakpointsAntDesign,
 | 
			
		||||
  breakpointsBootstrapV5,
 | 
			
		||||
  breakpointsElement,
 | 
			
		||||
  breakpointsMasterCss,
 | 
			
		||||
  breakpointsPrimeFlex,
 | 
			
		||||
  breakpointsQuasar,
 | 
			
		||||
  breakpointsSematic,
 | 
			
		||||
  breakpointsTailwind,
 | 
			
		||||
  breakpointsVuetify,
 | 
			
		||||
  breakpointsVuetifyV2,
 | 
			
		||||
  breakpointsVuetifyV3,
 | 
			
		||||
  bypassFilter,
 | 
			
		||||
  camelize,
 | 
			
		||||
  clamp,
 | 
			
		||||
  cloneFnJSON,
 | 
			
		||||
  computedAsync,
 | 
			
		||||
  computedEager,
 | 
			
		||||
  computedInject,
 | 
			
		||||
  computedWithControl,
 | 
			
		||||
  containsProp,
 | 
			
		||||
  controlledRef,
 | 
			
		||||
  createEventHook,
 | 
			
		||||
  createFetch,
 | 
			
		||||
  createFilterWrapper,
 | 
			
		||||
  createGlobalState,
 | 
			
		||||
  createInjectionState,
 | 
			
		||||
  createRef,
 | 
			
		||||
  createReusableTemplate,
 | 
			
		||||
  createSharedComposable,
 | 
			
		||||
  createSingletonPromise,
 | 
			
		||||
  createTemplatePromise,
 | 
			
		||||
  createUnrefFn,
 | 
			
		||||
  customStorageEventName,
 | 
			
		||||
  debounceFilter,
 | 
			
		||||
  defaultDocument,
 | 
			
		||||
  defaultLocation,
 | 
			
		||||
  defaultNavigator,
 | 
			
		||||
  defaultWindow,
 | 
			
		||||
  executeTransition,
 | 
			
		||||
  extendRef,
 | 
			
		||||
  formatDate,
 | 
			
		||||
  formatTimeAgo,
 | 
			
		||||
  get,
 | 
			
		||||
  getLifeCycleTarget,
 | 
			
		||||
  getSSRHandler,
 | 
			
		||||
  hasOwn,
 | 
			
		||||
  hyphenate,
 | 
			
		||||
  identity,
 | 
			
		||||
  increaseWithUnit,
 | 
			
		||||
  injectLocal,
 | 
			
		||||
  invoke,
 | 
			
		||||
  isClient,
 | 
			
		||||
  isDef,
 | 
			
		||||
  isDefined,
 | 
			
		||||
  isIOS,
 | 
			
		||||
  isObject,
 | 
			
		||||
  isWorker,
 | 
			
		||||
  makeDestructurable,
 | 
			
		||||
  mapGamepadToXbox360Controller,
 | 
			
		||||
  noop,
 | 
			
		||||
  normalizeDate,
 | 
			
		||||
  notNullish,
 | 
			
		||||
  now,
 | 
			
		||||
  objectEntries,
 | 
			
		||||
  objectOmit,
 | 
			
		||||
  objectPick,
 | 
			
		||||
  onClickOutside,
 | 
			
		||||
  onElementRemoval,
 | 
			
		||||
  onKeyDown,
 | 
			
		||||
  onKeyPressed,
 | 
			
		||||
  onKeyStroke,
 | 
			
		||||
  onKeyUp,
 | 
			
		||||
  onLongPress,
 | 
			
		||||
  onStartTyping,
 | 
			
		||||
  pausableFilter,
 | 
			
		||||
  promiseTimeout,
 | 
			
		||||
  provideLocal,
 | 
			
		||||
  provideSSRWidth,
 | 
			
		||||
  pxValue,
 | 
			
		||||
  rand,
 | 
			
		||||
  reactify,
 | 
			
		||||
  reactifyObject,
 | 
			
		||||
  reactiveComputed,
 | 
			
		||||
  reactiveOmit,
 | 
			
		||||
  reactivePick,
 | 
			
		||||
  refAutoReset,
 | 
			
		||||
  refDebounced,
 | 
			
		||||
  refDefault,
 | 
			
		||||
  refThrottled,
 | 
			
		||||
  refWithControl,
 | 
			
		||||
  resolveRef,
 | 
			
		||||
  resolveUnref,
 | 
			
		||||
  set,
 | 
			
		||||
  setSSRHandler,
 | 
			
		||||
  syncRef,
 | 
			
		||||
  syncRefs,
 | 
			
		||||
  templateRef,
 | 
			
		||||
  throttleFilter,
 | 
			
		||||
  timestamp,
 | 
			
		||||
  toArray,
 | 
			
		||||
  toReactive,
 | 
			
		||||
  toRef,
 | 
			
		||||
  toRefs,
 | 
			
		||||
  toValue,
 | 
			
		||||
  tryOnBeforeMount,
 | 
			
		||||
  tryOnBeforeUnmount,
 | 
			
		||||
  tryOnMounted,
 | 
			
		||||
  tryOnScopeDispose,
 | 
			
		||||
  tryOnUnmounted,
 | 
			
		||||
  unrefElement,
 | 
			
		||||
  until,
 | 
			
		||||
  useActiveElement,
 | 
			
		||||
  useAnimate,
 | 
			
		||||
  useArrayDifference,
 | 
			
		||||
  useArrayEvery,
 | 
			
		||||
  useArrayFilter,
 | 
			
		||||
  useArrayFind,
 | 
			
		||||
  useArrayFindIndex,
 | 
			
		||||
  useArrayFindLast,
 | 
			
		||||
  useArrayIncludes,
 | 
			
		||||
  useArrayJoin,
 | 
			
		||||
  useArrayMap,
 | 
			
		||||
  useArrayReduce,
 | 
			
		||||
  useArraySome,
 | 
			
		||||
  useArrayUnique,
 | 
			
		||||
  useAsyncQueue,
 | 
			
		||||
  useAsyncState,
 | 
			
		||||
  useBase64,
 | 
			
		||||
  useBattery,
 | 
			
		||||
  useBluetooth,
 | 
			
		||||
  useBreakpoints,
 | 
			
		||||
  useBroadcastChannel,
 | 
			
		||||
  useBrowserLocation,
 | 
			
		||||
  useCached,
 | 
			
		||||
  useClipboard,
 | 
			
		||||
  useClipboardItems,
 | 
			
		||||
  useCloned,
 | 
			
		||||
  useColorMode,
 | 
			
		||||
  useConfirmDialog,
 | 
			
		||||
  useCountdown,
 | 
			
		||||
  useCounter,
 | 
			
		||||
  useCssVar,
 | 
			
		||||
  useCurrentElement,
 | 
			
		||||
  useCycleList,
 | 
			
		||||
  useDark,
 | 
			
		||||
  useDateFormat,
 | 
			
		||||
  useDebounceFn,
 | 
			
		||||
  useDebouncedRefHistory,
 | 
			
		||||
  useDeviceMotion,
 | 
			
		||||
  useDeviceOrientation,
 | 
			
		||||
  useDevicePixelRatio,
 | 
			
		||||
  useDevicesList,
 | 
			
		||||
  useDisplayMedia,
 | 
			
		||||
  useDocumentVisibility,
 | 
			
		||||
  useDraggable,
 | 
			
		||||
  useDropZone,
 | 
			
		||||
  useElementBounding,
 | 
			
		||||
  useElementByPoint,
 | 
			
		||||
  useElementHover,
 | 
			
		||||
  useElementSize,
 | 
			
		||||
  useElementVisibility,
 | 
			
		||||
  useEventBus,
 | 
			
		||||
  useEventListener,
 | 
			
		||||
  useEventSource,
 | 
			
		||||
  useEyeDropper,
 | 
			
		||||
  useFavicon,
 | 
			
		||||
  useFetch,
 | 
			
		||||
  useFileDialog,
 | 
			
		||||
  useFileSystemAccess,
 | 
			
		||||
  useFocus,
 | 
			
		||||
  useFocusWithin,
 | 
			
		||||
  useFps,
 | 
			
		||||
  useFullscreen,
 | 
			
		||||
  useGamepad,
 | 
			
		||||
  useGeolocation,
 | 
			
		||||
  useIdle,
 | 
			
		||||
  useImage,
 | 
			
		||||
  useInfiniteScroll,
 | 
			
		||||
  useIntersectionObserver,
 | 
			
		||||
  useInterval,
 | 
			
		||||
  useIntervalFn,
 | 
			
		||||
  useKeyModifier,
 | 
			
		||||
  useLastChanged,
 | 
			
		||||
  useLocalStorage,
 | 
			
		||||
  useMagicKeys,
 | 
			
		||||
  useManualRefHistory,
 | 
			
		||||
  useMediaControls,
 | 
			
		||||
  useMediaQuery,
 | 
			
		||||
  useMemoize,
 | 
			
		||||
  useMemory,
 | 
			
		||||
  useMounted,
 | 
			
		||||
  useMouse,
 | 
			
		||||
  useMouseInElement,
 | 
			
		||||
  useMousePressed,
 | 
			
		||||
  useMutationObserver,
 | 
			
		||||
  useNavigatorLanguage,
 | 
			
		||||
  useNetwork,
 | 
			
		||||
  useNow,
 | 
			
		||||
  useObjectUrl,
 | 
			
		||||
  useOffsetPagination,
 | 
			
		||||
  useOnline,
 | 
			
		||||
  usePageLeave,
 | 
			
		||||
  useParallax,
 | 
			
		||||
  useParentElement,
 | 
			
		||||
  usePerformanceObserver,
 | 
			
		||||
  usePermission,
 | 
			
		||||
  usePointer,
 | 
			
		||||
  usePointerLock,
 | 
			
		||||
  usePointerSwipe,
 | 
			
		||||
  usePreferredColorScheme,
 | 
			
		||||
  usePreferredContrast,
 | 
			
		||||
  usePreferredDark,
 | 
			
		||||
  usePreferredLanguages,
 | 
			
		||||
  usePreferredReducedMotion,
 | 
			
		||||
  usePreferredReducedTransparency,
 | 
			
		||||
  usePrevious,
 | 
			
		||||
  useRafFn,
 | 
			
		||||
  useRefHistory,
 | 
			
		||||
  useResizeObserver,
 | 
			
		||||
  useSSRWidth,
 | 
			
		||||
  useScreenOrientation,
 | 
			
		||||
  useScreenSafeArea,
 | 
			
		||||
  useScriptTag,
 | 
			
		||||
  useScroll,
 | 
			
		||||
  useScrollLock,
 | 
			
		||||
  useSessionStorage,
 | 
			
		||||
  useShare,
 | 
			
		||||
  useSorted,
 | 
			
		||||
  useSpeechRecognition,
 | 
			
		||||
  useSpeechSynthesis,
 | 
			
		||||
  useStepper,
 | 
			
		||||
  useStorage,
 | 
			
		||||
  useStorageAsync,
 | 
			
		||||
  useStyleTag,
 | 
			
		||||
  useSupported,
 | 
			
		||||
  useSwipe,
 | 
			
		||||
  useTemplateRefsList,
 | 
			
		||||
  useTextDirection,
 | 
			
		||||
  useTextSelection,
 | 
			
		||||
  useTextareaAutosize,
 | 
			
		||||
  useThrottleFn,
 | 
			
		||||
  useThrottledRefHistory,
 | 
			
		||||
  useTimeAgo,
 | 
			
		||||
  useTimeout,
 | 
			
		||||
  useTimeoutFn,
 | 
			
		||||
  useTimeoutPoll,
 | 
			
		||||
  useTimestamp,
 | 
			
		||||
  useTitle,
 | 
			
		||||
  useToNumber,
 | 
			
		||||
  useToString,
 | 
			
		||||
  useToggle,
 | 
			
		||||
  useTransition,
 | 
			
		||||
  useUrlSearchParams,
 | 
			
		||||
  useUserMedia,
 | 
			
		||||
  useVModel,
 | 
			
		||||
  useVModels,
 | 
			
		||||
  useVibrate,
 | 
			
		||||
  useVirtualList,
 | 
			
		||||
  useWakeLock,
 | 
			
		||||
  useWebNotification,
 | 
			
		||||
  useWebSocket,
 | 
			
		||||
  useWebWorker,
 | 
			
		||||
  useWebWorkerFn,
 | 
			
		||||
  useWindowFocus,
 | 
			
		||||
  useWindowScroll,
 | 
			
		||||
  useWindowSize,
 | 
			
		||||
  watchArray,
 | 
			
		||||
  watchAtMost,
 | 
			
		||||
  watchDebounced,
 | 
			
		||||
  watchDeep,
 | 
			
		||||
  watchIgnorable,
 | 
			
		||||
  watchImmediate,
 | 
			
		||||
  watchOnce,
 | 
			
		||||
  watchPausable,
 | 
			
		||||
  watchThrottled,
 | 
			
		||||
  watchTriggerable,
 | 
			
		||||
  watchWithFilter,
 | 
			
		||||
  whenever
 | 
			
		||||
} from "./chunk-QSBXJHLQ.js";
 | 
			
		||||
import "./chunk-JBP73PM7.js";
 | 
			
		||||
export {
 | 
			
		||||
  DefaultMagicKeysAliasMap,
 | 
			
		||||
  StorageSerializers,
 | 
			
		||||
  TransitionPresets,
 | 
			
		||||
  assert,
 | 
			
		||||
  computedAsync as asyncComputed,
 | 
			
		||||
  refAutoReset as autoResetRef,
 | 
			
		||||
  breakpointsAntDesign,
 | 
			
		||||
  breakpointsBootstrapV5,
 | 
			
		||||
  breakpointsElement,
 | 
			
		||||
  breakpointsMasterCss,
 | 
			
		||||
  breakpointsPrimeFlex,
 | 
			
		||||
  breakpointsQuasar,
 | 
			
		||||
  breakpointsSematic,
 | 
			
		||||
  breakpointsTailwind,
 | 
			
		||||
  breakpointsVuetify,
 | 
			
		||||
  breakpointsVuetifyV2,
 | 
			
		||||
  breakpointsVuetifyV3,
 | 
			
		||||
  bypassFilter,
 | 
			
		||||
  camelize,
 | 
			
		||||
  clamp,
 | 
			
		||||
  cloneFnJSON,
 | 
			
		||||
  computedAsync,
 | 
			
		||||
  computedEager,
 | 
			
		||||
  computedInject,
 | 
			
		||||
  computedWithControl,
 | 
			
		||||
  containsProp,
 | 
			
		||||
  computedWithControl as controlledComputed,
 | 
			
		||||
  controlledRef,
 | 
			
		||||
  createEventHook,
 | 
			
		||||
  createFetch,
 | 
			
		||||
  createFilterWrapper,
 | 
			
		||||
  createGlobalState,
 | 
			
		||||
  createInjectionState,
 | 
			
		||||
  reactify as createReactiveFn,
 | 
			
		||||
  createRef,
 | 
			
		||||
  createReusableTemplate,
 | 
			
		||||
  createSharedComposable,
 | 
			
		||||
  createSingletonPromise,
 | 
			
		||||
  createTemplatePromise,
 | 
			
		||||
  createUnrefFn,
 | 
			
		||||
  customStorageEventName,
 | 
			
		||||
  debounceFilter,
 | 
			
		||||
  refDebounced as debouncedRef,
 | 
			
		||||
  watchDebounced as debouncedWatch,
 | 
			
		||||
  defaultDocument,
 | 
			
		||||
  defaultLocation,
 | 
			
		||||
  defaultNavigator,
 | 
			
		||||
  defaultWindow,
 | 
			
		||||
  computedEager as eagerComputed,
 | 
			
		||||
  executeTransition,
 | 
			
		||||
  extendRef,
 | 
			
		||||
  formatDate,
 | 
			
		||||
  formatTimeAgo,
 | 
			
		||||
  get,
 | 
			
		||||
  getLifeCycleTarget,
 | 
			
		||||
  getSSRHandler,
 | 
			
		||||
  hasOwn,
 | 
			
		||||
  hyphenate,
 | 
			
		||||
  identity,
 | 
			
		||||
  watchIgnorable as ignorableWatch,
 | 
			
		||||
  increaseWithUnit,
 | 
			
		||||
  injectLocal,
 | 
			
		||||
  invoke,
 | 
			
		||||
  isClient,
 | 
			
		||||
  isDef,
 | 
			
		||||
  isDefined,
 | 
			
		||||
  isIOS,
 | 
			
		||||
  isObject,
 | 
			
		||||
  isWorker,
 | 
			
		||||
  makeDestructurable,
 | 
			
		||||
  mapGamepadToXbox360Controller,
 | 
			
		||||
  noop,
 | 
			
		||||
  normalizeDate,
 | 
			
		||||
  notNullish,
 | 
			
		||||
  now,
 | 
			
		||||
  objectEntries,
 | 
			
		||||
  objectOmit,
 | 
			
		||||
  objectPick,
 | 
			
		||||
  onClickOutside,
 | 
			
		||||
  onElementRemoval,
 | 
			
		||||
  onKeyDown,
 | 
			
		||||
  onKeyPressed,
 | 
			
		||||
  onKeyStroke,
 | 
			
		||||
  onKeyUp,
 | 
			
		||||
  onLongPress,
 | 
			
		||||
  onStartTyping,
 | 
			
		||||
  pausableFilter,
 | 
			
		||||
  watchPausable as pausableWatch,
 | 
			
		||||
  promiseTimeout,
 | 
			
		||||
  provideLocal,
 | 
			
		||||
  provideSSRWidth,
 | 
			
		||||
  pxValue,
 | 
			
		||||
  rand,
 | 
			
		||||
  reactify,
 | 
			
		||||
  reactifyObject,
 | 
			
		||||
  reactiveComputed,
 | 
			
		||||
  reactiveOmit,
 | 
			
		||||
  reactivePick,
 | 
			
		||||
  refAutoReset,
 | 
			
		||||
  refDebounced,
 | 
			
		||||
  refDefault,
 | 
			
		||||
  refThrottled,
 | 
			
		||||
  refWithControl,
 | 
			
		||||
  resolveRef,
 | 
			
		||||
  resolveUnref,
 | 
			
		||||
  set,
 | 
			
		||||
  setSSRHandler,
 | 
			
		||||
  syncRef,
 | 
			
		||||
  syncRefs,
 | 
			
		||||
  templateRef,
 | 
			
		||||
  throttleFilter,
 | 
			
		||||
  refThrottled as throttledRef,
 | 
			
		||||
  watchThrottled as throttledWatch,
 | 
			
		||||
  timestamp,
 | 
			
		||||
  toArray,
 | 
			
		||||
  toReactive,
 | 
			
		||||
  toRef,
 | 
			
		||||
  toRefs,
 | 
			
		||||
  toValue,
 | 
			
		||||
  tryOnBeforeMount,
 | 
			
		||||
  tryOnBeforeUnmount,
 | 
			
		||||
  tryOnMounted,
 | 
			
		||||
  tryOnScopeDispose,
 | 
			
		||||
  tryOnUnmounted,
 | 
			
		||||
  unrefElement,
 | 
			
		||||
  until,
 | 
			
		||||
  useActiveElement,
 | 
			
		||||
  useAnimate,
 | 
			
		||||
  useArrayDifference,
 | 
			
		||||
  useArrayEvery,
 | 
			
		||||
  useArrayFilter,
 | 
			
		||||
  useArrayFind,
 | 
			
		||||
  useArrayFindIndex,
 | 
			
		||||
  useArrayFindLast,
 | 
			
		||||
  useArrayIncludes,
 | 
			
		||||
  useArrayJoin,
 | 
			
		||||
  useArrayMap,
 | 
			
		||||
  useArrayReduce,
 | 
			
		||||
  useArraySome,
 | 
			
		||||
  useArrayUnique,
 | 
			
		||||
  useAsyncQueue,
 | 
			
		||||
  useAsyncState,
 | 
			
		||||
  useBase64,
 | 
			
		||||
  useBattery,
 | 
			
		||||
  useBluetooth,
 | 
			
		||||
  useBreakpoints,
 | 
			
		||||
  useBroadcastChannel,
 | 
			
		||||
  useBrowserLocation,
 | 
			
		||||
  useCached,
 | 
			
		||||
  useClipboard,
 | 
			
		||||
  useClipboardItems,
 | 
			
		||||
  useCloned,
 | 
			
		||||
  useColorMode,
 | 
			
		||||
  useConfirmDialog,
 | 
			
		||||
  useCountdown,
 | 
			
		||||
  useCounter,
 | 
			
		||||
  useCssVar,
 | 
			
		||||
  useCurrentElement,
 | 
			
		||||
  useCycleList,
 | 
			
		||||
  useDark,
 | 
			
		||||
  useDateFormat,
 | 
			
		||||
  refDebounced as useDebounce,
 | 
			
		||||
  useDebounceFn,
 | 
			
		||||
  useDebouncedRefHistory,
 | 
			
		||||
  useDeviceMotion,
 | 
			
		||||
  useDeviceOrientation,
 | 
			
		||||
  useDevicePixelRatio,
 | 
			
		||||
  useDevicesList,
 | 
			
		||||
  useDisplayMedia,
 | 
			
		||||
  useDocumentVisibility,
 | 
			
		||||
  useDraggable,
 | 
			
		||||
  useDropZone,
 | 
			
		||||
  useElementBounding,
 | 
			
		||||
  useElementByPoint,
 | 
			
		||||
  useElementHover,
 | 
			
		||||
  useElementSize,
 | 
			
		||||
  useElementVisibility,
 | 
			
		||||
  useEventBus,
 | 
			
		||||
  useEventListener,
 | 
			
		||||
  useEventSource,
 | 
			
		||||
  useEyeDropper,
 | 
			
		||||
  useFavicon,
 | 
			
		||||
  useFetch,
 | 
			
		||||
  useFileDialog,
 | 
			
		||||
  useFileSystemAccess,
 | 
			
		||||
  useFocus,
 | 
			
		||||
  useFocusWithin,
 | 
			
		||||
  useFps,
 | 
			
		||||
  useFullscreen,
 | 
			
		||||
  useGamepad,
 | 
			
		||||
  useGeolocation,
 | 
			
		||||
  useIdle,
 | 
			
		||||
  useImage,
 | 
			
		||||
  useInfiniteScroll,
 | 
			
		||||
  useIntersectionObserver,
 | 
			
		||||
  useInterval,
 | 
			
		||||
  useIntervalFn,
 | 
			
		||||
  useKeyModifier,
 | 
			
		||||
  useLastChanged,
 | 
			
		||||
  useLocalStorage,
 | 
			
		||||
  useMagicKeys,
 | 
			
		||||
  useManualRefHistory,
 | 
			
		||||
  useMediaControls,
 | 
			
		||||
  useMediaQuery,
 | 
			
		||||
  useMemoize,
 | 
			
		||||
  useMemory,
 | 
			
		||||
  useMounted,
 | 
			
		||||
  useMouse,
 | 
			
		||||
  useMouseInElement,
 | 
			
		||||
  useMousePressed,
 | 
			
		||||
  useMutationObserver,
 | 
			
		||||
  useNavigatorLanguage,
 | 
			
		||||
  useNetwork,
 | 
			
		||||
  useNow,
 | 
			
		||||
  useObjectUrl,
 | 
			
		||||
  useOffsetPagination,
 | 
			
		||||
  useOnline,
 | 
			
		||||
  usePageLeave,
 | 
			
		||||
  useParallax,
 | 
			
		||||
  useParentElement,
 | 
			
		||||
  usePerformanceObserver,
 | 
			
		||||
  usePermission,
 | 
			
		||||
  usePointer,
 | 
			
		||||
  usePointerLock,
 | 
			
		||||
  usePointerSwipe,
 | 
			
		||||
  usePreferredColorScheme,
 | 
			
		||||
  usePreferredContrast,
 | 
			
		||||
  usePreferredDark,
 | 
			
		||||
  usePreferredLanguages,
 | 
			
		||||
  usePreferredReducedMotion,
 | 
			
		||||
  usePreferredReducedTransparency,
 | 
			
		||||
  usePrevious,
 | 
			
		||||
  useRafFn,
 | 
			
		||||
  useRefHistory,
 | 
			
		||||
  useResizeObserver,
 | 
			
		||||
  useSSRWidth,
 | 
			
		||||
  useScreenOrientation,
 | 
			
		||||
  useScreenSafeArea,
 | 
			
		||||
  useScriptTag,
 | 
			
		||||
  useScroll,
 | 
			
		||||
  useScrollLock,
 | 
			
		||||
  useSessionStorage,
 | 
			
		||||
  useShare,
 | 
			
		||||
  useSorted,
 | 
			
		||||
  useSpeechRecognition,
 | 
			
		||||
  useSpeechSynthesis,
 | 
			
		||||
  useStepper,
 | 
			
		||||
  useStorage,
 | 
			
		||||
  useStorageAsync,
 | 
			
		||||
  useStyleTag,
 | 
			
		||||
  useSupported,
 | 
			
		||||
  useSwipe,
 | 
			
		||||
  useTemplateRefsList,
 | 
			
		||||
  useTextDirection,
 | 
			
		||||
  useTextSelection,
 | 
			
		||||
  useTextareaAutosize,
 | 
			
		||||
  refThrottled as useThrottle,
 | 
			
		||||
  useThrottleFn,
 | 
			
		||||
  useThrottledRefHistory,
 | 
			
		||||
  useTimeAgo,
 | 
			
		||||
  useTimeout,
 | 
			
		||||
  useTimeoutFn,
 | 
			
		||||
  useTimeoutPoll,
 | 
			
		||||
  useTimestamp,
 | 
			
		||||
  useTitle,
 | 
			
		||||
  useToNumber,
 | 
			
		||||
  useToString,
 | 
			
		||||
  useToggle,
 | 
			
		||||
  useTransition,
 | 
			
		||||
  useUrlSearchParams,
 | 
			
		||||
  useUserMedia,
 | 
			
		||||
  useVModel,
 | 
			
		||||
  useVModels,
 | 
			
		||||
  useVibrate,
 | 
			
		||||
  useVirtualList,
 | 
			
		||||
  useWakeLock,
 | 
			
		||||
  useWebNotification,
 | 
			
		||||
  useWebSocket,
 | 
			
		||||
  useWebWorker,
 | 
			
		||||
  useWebWorkerFn,
 | 
			
		||||
  useWindowFocus,
 | 
			
		||||
  useWindowScroll,
 | 
			
		||||
  useWindowSize,
 | 
			
		||||
  watchArray,
 | 
			
		||||
  watchAtMost,
 | 
			
		||||
  watchDebounced,
 | 
			
		||||
  watchDeep,
 | 
			
		||||
  watchIgnorable,
 | 
			
		||||
  watchImmediate,
 | 
			
		||||
  watchOnce,
 | 
			
		||||
  watchPausable,
 | 
			
		||||
  watchThrottled,
 | 
			
		||||
  watchTriggerable,
 | 
			
		||||
  watchWithFilter,
 | 
			
		||||
  whenever
 | 
			
		||||
};
 | 
			
		||||
//# sourceMappingURL=vitepress___@vueuse_core.js.map
 | 
			
		||||
@@ -1,7 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "version": 3,
 | 
			
		||||
  "sources": [],
 | 
			
		||||
  "sourcesContent": [],
 | 
			
		||||
  "mappings": "",
 | 
			
		||||
  "names": []
 | 
			
		||||
}
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										1812
									
								
								docs/.vitepress/cache/deps/vitepress___minisearch.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1812
									
								
								docs/.vitepress/cache/deps/vitepress___minisearch.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										343
									
								
								docs/.vitepress/cache/deps/vue.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										343
									
								
								docs/.vitepress/cache/deps/vue.js
									
									
									
									
										vendored
									
									
								
							@@ -1,343 +0,0 @@
 | 
			
		||||
import {
 | 
			
		||||
  BaseTransition,
 | 
			
		||||
  BaseTransitionPropsValidators,
 | 
			
		||||
  Comment,
 | 
			
		||||
  DeprecationTypes,
 | 
			
		||||
  EffectScope,
 | 
			
		||||
  ErrorCodes,
 | 
			
		||||
  ErrorTypeStrings,
 | 
			
		||||
  Fragment,
 | 
			
		||||
  KeepAlive,
 | 
			
		||||
  ReactiveEffect,
 | 
			
		||||
  Static,
 | 
			
		||||
  Suspense,
 | 
			
		||||
  Teleport,
 | 
			
		||||
  Text,
 | 
			
		||||
  TrackOpTypes,
 | 
			
		||||
  Transition,
 | 
			
		||||
  TransitionGroup,
 | 
			
		||||
  TriggerOpTypes,
 | 
			
		||||
  VueElement,
 | 
			
		||||
  assertNumber,
 | 
			
		||||
  callWithAsyncErrorHandling,
 | 
			
		||||
  callWithErrorHandling,
 | 
			
		||||
  camelize,
 | 
			
		||||
  capitalize,
 | 
			
		||||
  cloneVNode,
 | 
			
		||||
  compatUtils,
 | 
			
		||||
  compile,
 | 
			
		||||
  computed,
 | 
			
		||||
  createApp,
 | 
			
		||||
  createBaseVNode,
 | 
			
		||||
  createBlock,
 | 
			
		||||
  createCommentVNode,
 | 
			
		||||
  createElementBlock,
 | 
			
		||||
  createHydrationRenderer,
 | 
			
		||||
  createPropsRestProxy,
 | 
			
		||||
  createRenderer,
 | 
			
		||||
  createSSRApp,
 | 
			
		||||
  createSlots,
 | 
			
		||||
  createStaticVNode,
 | 
			
		||||
  createTextVNode,
 | 
			
		||||
  createVNode,
 | 
			
		||||
  customRef,
 | 
			
		||||
  defineAsyncComponent,
 | 
			
		||||
  defineComponent,
 | 
			
		||||
  defineCustomElement,
 | 
			
		||||
  defineEmits,
 | 
			
		||||
  defineExpose,
 | 
			
		||||
  defineModel,
 | 
			
		||||
  defineOptions,
 | 
			
		||||
  defineProps,
 | 
			
		||||
  defineSSRCustomElement,
 | 
			
		||||
  defineSlots,
 | 
			
		||||
  devtools,
 | 
			
		||||
  effect,
 | 
			
		||||
  effectScope,
 | 
			
		||||
  getCurrentInstance,
 | 
			
		||||
  getCurrentScope,
 | 
			
		||||
  getCurrentWatcher,
 | 
			
		||||
  getTransitionRawChildren,
 | 
			
		||||
  guardReactiveProps,
 | 
			
		||||
  h,
 | 
			
		||||
  handleError,
 | 
			
		||||
  hasInjectionContext,
 | 
			
		||||
  hydrate,
 | 
			
		||||
  hydrateOnIdle,
 | 
			
		||||
  hydrateOnInteraction,
 | 
			
		||||
  hydrateOnMediaQuery,
 | 
			
		||||
  hydrateOnVisible,
 | 
			
		||||
  initCustomFormatter,
 | 
			
		||||
  initDirectivesForSSR,
 | 
			
		||||
  inject,
 | 
			
		||||
  isMemoSame,
 | 
			
		||||
  isProxy,
 | 
			
		||||
  isReactive,
 | 
			
		||||
  isReadonly,
 | 
			
		||||
  isRef,
 | 
			
		||||
  isRuntimeOnly,
 | 
			
		||||
  isShallow,
 | 
			
		||||
  isVNode,
 | 
			
		||||
  markRaw,
 | 
			
		||||
  mergeDefaults,
 | 
			
		||||
  mergeModels,
 | 
			
		||||
  mergeProps,
 | 
			
		||||
  nextTick,
 | 
			
		||||
  normalizeClass,
 | 
			
		||||
  normalizeProps,
 | 
			
		||||
  normalizeStyle,
 | 
			
		||||
  onActivated,
 | 
			
		||||
  onBeforeMount,
 | 
			
		||||
  onBeforeUnmount,
 | 
			
		||||
  onBeforeUpdate,
 | 
			
		||||
  onDeactivated,
 | 
			
		||||
  onErrorCaptured,
 | 
			
		||||
  onMounted,
 | 
			
		||||
  onRenderTracked,
 | 
			
		||||
  onRenderTriggered,
 | 
			
		||||
  onScopeDispose,
 | 
			
		||||
  onServerPrefetch,
 | 
			
		||||
  onUnmounted,
 | 
			
		||||
  onUpdated,
 | 
			
		||||
  onWatcherCleanup,
 | 
			
		||||
  openBlock,
 | 
			
		||||
  popScopeId,
 | 
			
		||||
  provide,
 | 
			
		||||
  proxyRefs,
 | 
			
		||||
  pushScopeId,
 | 
			
		||||
  queuePostFlushCb,
 | 
			
		||||
  reactive,
 | 
			
		||||
  readonly,
 | 
			
		||||
  ref,
 | 
			
		||||
  registerRuntimeCompiler,
 | 
			
		||||
  render,
 | 
			
		||||
  renderList,
 | 
			
		||||
  renderSlot,
 | 
			
		||||
  resolveComponent,
 | 
			
		||||
  resolveDirective,
 | 
			
		||||
  resolveDynamicComponent,
 | 
			
		||||
  resolveFilter,
 | 
			
		||||
  resolveTransitionHooks,
 | 
			
		||||
  setBlockTracking,
 | 
			
		||||
  setDevtoolsHook,
 | 
			
		||||
  setTransitionHooks,
 | 
			
		||||
  shallowReactive,
 | 
			
		||||
  shallowReadonly,
 | 
			
		||||
  shallowRef,
 | 
			
		||||
  ssrContextKey,
 | 
			
		||||
  ssrUtils,
 | 
			
		||||
  stop,
 | 
			
		||||
  toDisplayString,
 | 
			
		||||
  toHandlerKey,
 | 
			
		||||
  toHandlers,
 | 
			
		||||
  toRaw,
 | 
			
		||||
  toRef,
 | 
			
		||||
  toRefs,
 | 
			
		||||
  toValue,
 | 
			
		||||
  transformVNodeArgs,
 | 
			
		||||
  triggerRef,
 | 
			
		||||
  unref,
 | 
			
		||||
  useAttrs,
 | 
			
		||||
  useCssModule,
 | 
			
		||||
  useCssVars,
 | 
			
		||||
  useHost,
 | 
			
		||||
  useId,
 | 
			
		||||
  useModel,
 | 
			
		||||
  useSSRContext,
 | 
			
		||||
  useShadowRoot,
 | 
			
		||||
  useSlots,
 | 
			
		||||
  useTemplateRef,
 | 
			
		||||
  useTransitionState,
 | 
			
		||||
  vModelCheckbox,
 | 
			
		||||
  vModelDynamic,
 | 
			
		||||
  vModelRadio,
 | 
			
		||||
  vModelSelect,
 | 
			
		||||
  vModelText,
 | 
			
		||||
  vShow,
 | 
			
		||||
  version,
 | 
			
		||||
  warn,
 | 
			
		||||
  watch,
 | 
			
		||||
  watchEffect,
 | 
			
		||||
  watchPostEffect,
 | 
			
		||||
  watchSyncEffect,
 | 
			
		||||
  withAsyncContext,
 | 
			
		||||
  withCtx,
 | 
			
		||||
  withDefaults,
 | 
			
		||||
  withDirectives,
 | 
			
		||||
  withKeys,
 | 
			
		||||
  withMemo,
 | 
			
		||||
  withModifiers,
 | 
			
		||||
  withScopeId
 | 
			
		||||
} from "./chunk-JBP73PM7.js";
 | 
			
		||||
export {
 | 
			
		||||
  BaseTransition,
 | 
			
		||||
  BaseTransitionPropsValidators,
 | 
			
		||||
  Comment,
 | 
			
		||||
  DeprecationTypes,
 | 
			
		||||
  EffectScope,
 | 
			
		||||
  ErrorCodes,
 | 
			
		||||
  ErrorTypeStrings,
 | 
			
		||||
  Fragment,
 | 
			
		||||
  KeepAlive,
 | 
			
		||||
  ReactiveEffect,
 | 
			
		||||
  Static,
 | 
			
		||||
  Suspense,
 | 
			
		||||
  Teleport,
 | 
			
		||||
  Text,
 | 
			
		||||
  TrackOpTypes,
 | 
			
		||||
  Transition,
 | 
			
		||||
  TransitionGroup,
 | 
			
		||||
  TriggerOpTypes,
 | 
			
		||||
  VueElement,
 | 
			
		||||
  assertNumber,
 | 
			
		||||
  callWithAsyncErrorHandling,
 | 
			
		||||
  callWithErrorHandling,
 | 
			
		||||
  camelize,
 | 
			
		||||
  capitalize,
 | 
			
		||||
  cloneVNode,
 | 
			
		||||
  compatUtils,
 | 
			
		||||
  compile,
 | 
			
		||||
  computed,
 | 
			
		||||
  createApp,
 | 
			
		||||
  createBlock,
 | 
			
		||||
  createCommentVNode,
 | 
			
		||||
  createElementBlock,
 | 
			
		||||
  createBaseVNode as createElementVNode,
 | 
			
		||||
  createHydrationRenderer,
 | 
			
		||||
  createPropsRestProxy,
 | 
			
		||||
  createRenderer,
 | 
			
		||||
  createSSRApp,
 | 
			
		||||
  createSlots,
 | 
			
		||||
  createStaticVNode,
 | 
			
		||||
  createTextVNode,
 | 
			
		||||
  createVNode,
 | 
			
		||||
  customRef,
 | 
			
		||||
  defineAsyncComponent,
 | 
			
		||||
  defineComponent,
 | 
			
		||||
  defineCustomElement,
 | 
			
		||||
  defineEmits,
 | 
			
		||||
  defineExpose,
 | 
			
		||||
  defineModel,
 | 
			
		||||
  defineOptions,
 | 
			
		||||
  defineProps,
 | 
			
		||||
  defineSSRCustomElement,
 | 
			
		||||
  defineSlots,
 | 
			
		||||
  devtools,
 | 
			
		||||
  effect,
 | 
			
		||||
  effectScope,
 | 
			
		||||
  getCurrentInstance,
 | 
			
		||||
  getCurrentScope,
 | 
			
		||||
  getCurrentWatcher,
 | 
			
		||||
  getTransitionRawChildren,
 | 
			
		||||
  guardReactiveProps,
 | 
			
		||||
  h,
 | 
			
		||||
  handleError,
 | 
			
		||||
  hasInjectionContext,
 | 
			
		||||
  hydrate,
 | 
			
		||||
  hydrateOnIdle,
 | 
			
		||||
  hydrateOnInteraction,
 | 
			
		||||
  hydrateOnMediaQuery,
 | 
			
		||||
  hydrateOnVisible,
 | 
			
		||||
  initCustomFormatter,
 | 
			
		||||
  initDirectivesForSSR,
 | 
			
		||||
  inject,
 | 
			
		||||
  isMemoSame,
 | 
			
		||||
  isProxy,
 | 
			
		||||
  isReactive,
 | 
			
		||||
  isReadonly,
 | 
			
		||||
  isRef,
 | 
			
		||||
  isRuntimeOnly,
 | 
			
		||||
  isShallow,
 | 
			
		||||
  isVNode,
 | 
			
		||||
  markRaw,
 | 
			
		||||
  mergeDefaults,
 | 
			
		||||
  mergeModels,
 | 
			
		||||
  mergeProps,
 | 
			
		||||
  nextTick,
 | 
			
		||||
  normalizeClass,
 | 
			
		||||
  normalizeProps,
 | 
			
		||||
  normalizeStyle,
 | 
			
		||||
  onActivated,
 | 
			
		||||
  onBeforeMount,
 | 
			
		||||
  onBeforeUnmount,
 | 
			
		||||
  onBeforeUpdate,
 | 
			
		||||
  onDeactivated,
 | 
			
		||||
  onErrorCaptured,
 | 
			
		||||
  onMounted,
 | 
			
		||||
  onRenderTracked,
 | 
			
		||||
  onRenderTriggered,
 | 
			
		||||
  onScopeDispose,
 | 
			
		||||
  onServerPrefetch,
 | 
			
		||||
  onUnmounted,
 | 
			
		||||
  onUpdated,
 | 
			
		||||
  onWatcherCleanup,
 | 
			
		||||
  openBlock,
 | 
			
		||||
  popScopeId,
 | 
			
		||||
  provide,
 | 
			
		||||
  proxyRefs,
 | 
			
		||||
  pushScopeId,
 | 
			
		||||
  queuePostFlushCb,
 | 
			
		||||
  reactive,
 | 
			
		||||
  readonly,
 | 
			
		||||
  ref,
 | 
			
		||||
  registerRuntimeCompiler,
 | 
			
		||||
  render,
 | 
			
		||||
  renderList,
 | 
			
		||||
  renderSlot,
 | 
			
		||||
  resolveComponent,
 | 
			
		||||
  resolveDirective,
 | 
			
		||||
  resolveDynamicComponent,
 | 
			
		||||
  resolveFilter,
 | 
			
		||||
  resolveTransitionHooks,
 | 
			
		||||
  setBlockTracking,
 | 
			
		||||
  setDevtoolsHook,
 | 
			
		||||
  setTransitionHooks,
 | 
			
		||||
  shallowReactive,
 | 
			
		||||
  shallowReadonly,
 | 
			
		||||
  shallowRef,
 | 
			
		||||
  ssrContextKey,
 | 
			
		||||
  ssrUtils,
 | 
			
		||||
  stop,
 | 
			
		||||
  toDisplayString,
 | 
			
		||||
  toHandlerKey,
 | 
			
		||||
  toHandlers,
 | 
			
		||||
  toRaw,
 | 
			
		||||
  toRef,
 | 
			
		||||
  toRefs,
 | 
			
		||||
  toValue,
 | 
			
		||||
  transformVNodeArgs,
 | 
			
		||||
  triggerRef,
 | 
			
		||||
  unref,
 | 
			
		||||
  useAttrs,
 | 
			
		||||
  useCssModule,
 | 
			
		||||
  useCssVars,
 | 
			
		||||
  useHost,
 | 
			
		||||
  useId,
 | 
			
		||||
  useModel,
 | 
			
		||||
  useSSRContext,
 | 
			
		||||
  useShadowRoot,
 | 
			
		||||
  useSlots,
 | 
			
		||||
  useTemplateRef,
 | 
			
		||||
  useTransitionState,
 | 
			
		||||
  vModelCheckbox,
 | 
			
		||||
  vModelDynamic,
 | 
			
		||||
  vModelRadio,
 | 
			
		||||
  vModelSelect,
 | 
			
		||||
  vModelText,
 | 
			
		||||
  vShow,
 | 
			
		||||
  version,
 | 
			
		||||
  warn,
 | 
			
		||||
  watch,
 | 
			
		||||
  watchEffect,
 | 
			
		||||
  watchPostEffect,
 | 
			
		||||
  watchSyncEffect,
 | 
			
		||||
  withAsyncContext,
 | 
			
		||||
  withCtx,
 | 
			
		||||
  withDefaults,
 | 
			
		||||
  withDirectives,
 | 
			
		||||
  withKeys,
 | 
			
		||||
  withMemo,
 | 
			
		||||
  withModifiers,
 | 
			
		||||
  withScopeId
 | 
			
		||||
};
 | 
			
		||||
//# sourceMappingURL=vue.js.map
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/.vitepress/cache/deps/vue.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/.vitepress/cache/deps/vue.js.map
									
									
									
									
										vendored
									
									
								
							@@ -1,7 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "version": 3,
 | 
			
		||||
  "sources": [],
 | 
			
		||||
  "sourcesContent": [],
 | 
			
		||||
  "mappings": "",
 | 
			
		||||
  "names": []
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										24
									
								
								docs/.vitepress/dist/404.html
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								docs/.vitepress/dist/404.html
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								docs/.vitepress/dist/DevStar.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vitepress/dist/DevStar.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 68 KiB  | 
							
								
								
									
										1
									
								
								docs/.vitepress/dist/assets/app.auNZsvtC.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								docs/.vitepress/dist/assets/app.auNZsvtC.js
									
									
									
									
										vendored
									
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
import{t as p}from"./chunks/theme.BP9HmfGK.js";import{R as s,a2 as i,a3 as u,a4 as c,a5 as l,a6 as f,a7 as d,a8 as m,a9 as h,aa as g,ab as A,d as v,u as y,v as C,s as P,ac as b,ad as w,ae as R,af as E}from"./chunks/framework.S-Qvb3wi.js";function r(e){if(e.extends){const a=r(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const n=r(p),S=v({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=y();return C(()=>{P(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&b(),w(),R(),n.setup&&n.setup(),()=>E(n.Layout)}});async function T(){globalThis.__VITEPRESS__=!0;const e=_(),a=D();a.provide(u,e);const t=c(e.route);return a.provide(l,t),a.component("Content",f),a.component("ClientOnly",d),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),n.enhanceApp&&await n.enhanceApp({app:a,router:e,siteData:m}),{app:a,router:e,data:t}}function D(){return A(S)}function _(){let e=s;return h(a=>{let t=g(a),o=null;return t&&(e&&(t=t.replace(/\.js$/,".lean.js")),o=import(t)),s&&(e=!1),o},n.NotFound)}s&&T().then(({app:e,router:a,data:t})=>{a.go().then(()=>{i(a.route,t.site),e.mount("#app")})});export{T as createApp};
 | 
			
		||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
import{_ as a,c as t,o as r,ag as o}from"./chunks/framework.S-Qvb3wi.js";const p=JSON.parse('{"title":"关于Devstar","description":"","frontmatter":{"outline":"deep","weight":1},"headers":[],"relativePath":"document/index.md","filePath":"document/index.md"}'),n={name:"document/index.md"};function d(i,e,s,c,l,_){return r(),t("div",null,e[0]||(e[0]=[o('<h1 id="关于devstar" tabindex="-1">关于Devstar <a class="header-anchor" href="#关于devstar" aria-label="Permalink to "关于Devstar""></a></h1><p>DevStar Studio 是一个Gitea 发行版,在Git代码仓库托管的基础上提供了开发环境DevEnv执行引擎,与VS Code插件或自定义IDE深度融合,形成灵活适配基础软件工具的生态平台,从而为开发者用户提供智能(代码大模型AI+)、安全(完全云原生)、一站式开箱即用的CI/CD全生命周期研发平台。</p><h2 id="目标" tabindex="-1">目标 <a class="header-anchor" href="#目标" aria-label="Permalink to "目标""></a></h2><p>DevStar Studio是一个通用的一站式软件研发平台,它最初的目标是服务于汽车软件、消费电子、智能制造等嵌入式软件研发场景中的开发者</p><h2 id="在线演示" tabindex="-1">在线演示 <a class="header-anchor" href="#在线演示" aria-label="Permalink to "在线演示""></a></h2><p>访问<a href="https://devstar.cn" target="_blank" rel="noreferrer">devstar.cn</a>或者在VS Code插件市场搜索devstar</p>',6)]))}const u=a(n,[["render",d]]);export{p as __pageData,u as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as a,c as t,o as r,ag as o}from"./chunks/framework.S-Qvb3wi.js";const p=JSON.parse('{"title":"关于Devstar","description":"","frontmatter":{"outline":"deep","weight":1},"headers":[],"relativePath":"document/index.md","filePath":"document/index.md"}'),n={name:"document/index.md"};function d(i,e,s,c,l,_){return r(),t("div",null,e[0]||(e[0]=[o("",6)]))}const u=a(n,[["render",d]]);export{p as __pageData,u as default};
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
import{_ as a,c as i,o as t,ag as n}from"./chunks/framework.S-Qvb3wi.js";const k=JSON.parse('{"title":"快速开始","description":"","frontmatter":{"outline":"deep","weight":2},"headers":[],"relativePath":"document/installation/install-via-shell-script.md","filePath":"document/installation/install-via-shell-script.md"}'),e={name:"document/installation/install-via-shell-script.md"};function l(p,s,h,d,o,r){return t(),i("div",null,s[0]||(s[0]=[n(`<h1 id="快速开始" tabindex="-1">快速开始 <a class="header-anchor" href="#快速开始" aria-label="Permalink to "快速开始""></a></h1><p>如果您是在Windows环境下,请在cmd命令行下先运行如下命令:</p><div class="language-md vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">md</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0"><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">powershell wsl --install -d Ubuntu-20.04</span></span></code></pre></div><p>如果以上命令无法自动完成安装WSL,可以手动执行如下消耗完成命令安装:</p><div class="language-md vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">md</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0"><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">dism.exe /Online /Enable-Feature /FeatureName:Microsoft-Windows-Subsystem-Linux /All /LimitAccess /All</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">dism.exe /Online /Enable-Feature /FeatureName:VirtualMachinePlatform /All /LimitAccess</span></span></code></pre></div><p>在Ubuntu-20.04下完成安装:</p><div class="language-md vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">md</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0"><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">wget -c https://devstar.cn/assets/install.sh && chmod +x install.sh && sudo ./install.sh</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">devstar help</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">------------------------------------------------------------------------</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">DevStar usage help:</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  help, -h, --help,     Help information</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  start                 Start DevStar Studio</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">      --port=<arg>      Specify the port number (default port is 8080)</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">      --version=<arg>   Specify the DevStar Studio Image Version (default verson is latest)</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  stop                  Stop the running DevStar Studio</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  logs                  View the logs of the devstar-studio container</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  clean                 Clean up the running DevStar Studio, including deleting user data. Please use with caution.</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">------------------------------------------------------------------------</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">sudo devstar start</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">...</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">-------------------------------------------------------</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">DevStar started in http://localhost:8080 successfully!</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">-------------------------------------------------------</span></span></code></pre></div><p>然后通过浏览器打开http://localhost:8080完成后配置安装,默认第一个注册用户为管理员账户。</p>`,8)]))}const E=a(e,[["render",l]]);export{k as __pageData,E as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as a,c as i,o as t,ag as n}from"./chunks/framework.S-Qvb3wi.js";const k=JSON.parse('{"title":"快速开始","description":"","frontmatter":{"outline":"deep","weight":2},"headers":[],"relativePath":"document/installation/install-via-shell-script.md","filePath":"document/installation/install-via-shell-script.md"}'),e={name:"document/installation/install-via-shell-script.md"};function l(p,s,h,d,o,r){return t(),i("div",null,s[0]||(s[0]=[n("",8)]))}const E=a(e,[["render",l]]);export{k as __pageData,E as default};
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
import{_ as a,c as i,o as t,ag as n}from"./chunks/framework.S-Qvb3wi.js";const c=JSON.parse('{"title":"快速开始","description":"","frontmatter":{"outline":"deep","weight":2},"headers":[],"relativePath":"document/快速开始.md","filePath":"document/快速开始.md"}'),e={name:"document/快速开始.md"};function l(p,s,h,d,o,r){return t(),i("div",null,s[0]||(s[0]=[n(`<h1 id="快速开始" tabindex="-1">快速开始 <a class="header-anchor" href="#快速开始" aria-label="Permalink to "快速开始""></a></h1><p>如果您是在Windows环境下,请在cmd命令行下先运行如下命令:</p><div class="language-md vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">md</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0"><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">powershell wsl --install -d Ubuntu-20.04</span></span></code></pre></div><p>如果以上命令无法自动完成安装WSL,可以手动执行如下消耗完成命令安装:</p><div class="language-md vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">md</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0"><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">dism.exe /Online /Enable-Feature /FeatureName:Microsoft-Windows-Subsystem-Linux /All /LimitAccess /All</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">dism.exe /Online /Enable-Feature /FeatureName:VirtualMachinePlatform /All /LimitAccess</span></span></code></pre></div><p>在Ubuntu-20.04下完成安装:</p><div class="language-md vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">md</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0"><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">wget -c https://devstar.cn/assets/install.sh && chmod +x install.sh && sudo ./install.sh</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">devstar help</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">------------------------------------------------------------------------</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">DevStar usage help:</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  help, -h, --help,     Help information</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  start                 Start DevStar Studio</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">      --port=<arg>      Specify the port number (default port is 8080)</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">      --version=<arg>   Specify the DevStar Studio Image Version (default verson is latest)</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  stop                  Stop the running DevStar Studio</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  logs                  View the logs of the devstar-studio container</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">  clean                 Clean up the running DevStar Studio, including deleting user data. Please use with caution.</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">------------------------------------------------------------------------</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">sudo devstar start</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">...</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">-------------------------------------------------------</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">DevStar started in http://localhost:8080 successfully!</span></span>
 | 
			
		||||
<span class="line"><span style="--shiki-light:#005CC5;--shiki-light-font-weight:bold;--shiki-dark:#79B8FF;--shiki-dark-font-weight:bold;">-------------------------------------------------------</span></span></code></pre></div><p>然后通过浏览器打开http://localhost:8080完成后配置安装,默认第一个注册用户为管理员账户。</p>`,8)]))}const E=a(e,[["render",l]]);export{c as __pageData,E as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as a,c as i,o as t,ag as n}from"./chunks/framework.S-Qvb3wi.js";const c=JSON.parse('{"title":"快速开始","description":"","frontmatter":{"outline":"deep","weight":2},"headers":[],"relativePath":"document/快速开始.md","filePath":"document/快速开始.md"}'),e={name:"document/快速开始.md"};function l(p,s,h,d,o,r){return t(),i("div",null,s[0]||(s[0]=[n("",8)]))}const E=a(e,[["render",l]]);export{c as __pageData,E as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as a,c as i,o as t,ag as r}from"./chunks/framework.S-Qvb3wi.js";const u=JSON.parse('{"title":"Gitea Enterprise 介绍","description":"","frontmatter":{"title":"Gitea Enterprise 介绍","sidebar":"auto"},"headers":[],"relativePath":"enterprise/index.md","filePath":"enterprise/index.md"}'),l={name:"enterprise/index.md"};function o(n,e,s,p,d,c){return t(),i("div",null,e[0]||(e[0]=[r('<h1 id="gitea-enterprise" tabindex="-1">Gitea Enterprise <a class="header-anchor" href="#gitea-enterprise" aria-label="Permalink to "Gitea Enterprise""></a></h1><h2 id="什么是-gitea-enterprise" tabindex="-1">什么是 Gitea Enterprise? <a class="header-anchor" href="#什么是-gitea-enterprise" aria-label="Permalink to "什么是 Gitea Enterprise?""></a></h2><p>Gitea Enterprise 是基于开源 Gitea 项目开发的增强版,为企业级用户提供更可靠的体验。</p><h2 id="与开源版的关系" tabindex="-1">与开源版的关系 <a class="header-anchor" href="#与开源版的关系" aria-label="Permalink to "与开源版的关系""></a></h2><ul><li>基于开源 Gitea 项目开发,操作和配置方式几乎相同</li><li>熟悉 Gitea 的用户可以快速上手 Gitea Enterprise</li><li>企业版专为企业用例需求构建</li><li><strong>注意</strong>:企业版功能需要付费激活</li></ul><blockquote><p>如果您对价格有疑问,可以申请30天免费试用,试用期结束后可选择继续使用(功能将恢复为开源版相同)</p></blockquote><h2 id="定价方案" tabindex="-1">定价方案 <a class="header-anchor" href="#定价方案" aria-label="Permalink to "定价方案""></a></h2><p>您可以在客户门户自主购买 Gitea Enterprise 许可证:</p><ul><li>价格基于用户数量,可按实际需求购买</li><li>支持随时"调整"许可证规模(增减用户数或调整时长) <ul><li>示例:可将20人12个月许可调整为40人6个月或10人24个月</li><li>调整不产生额外费用</li></ul></li><li>许可证到期前可选择续订延长有效期</li><li>随时续订可享受促销优惠</li></ul><h2 id="版本规则" tabindex="-1">版本规则 <a class="header-anchor" href="#版本规则" aria-label="Permalink to "版本规则""></a></h2><p>Gitea Enterprise 与 Gitea 项目的版本号不同但相互对应:</p><ul><li>企业版版本格式:<code>v21.6.*</code><ul><li><code>v21.6</code> 表示基于 Gitea 1.21.6 版本开发</li><li><code>.*</code> 包含企业版特有的补丁或功能更新</li></ul></li></ul><h3 id="版本切换指南" tabindex="-1">版本切换指南 <a class="header-anchor" href="#版本切换指南" aria-label="Permalink to "版本切换指南""></a></h3><ol><li><strong>切换条件</strong>:所有数据和配置完全兼容</li><li><strong>操作步骤</strong>:只需替换可执行文件或 Docker 镜像</li><li><strong>版本对应规则</strong>: <ul><li>从 Gitea v1.21.6 → 需选择 Gitea Enterprise v21+</li><li>从 Gitea Enterprise v23.1.0 → 需选择 Gitea v1.23+</li></ul></li></ol><h2 id="问题反馈" tabindex="-1">问题反馈 <a class="header-anchor" href="#问题反馈" aria-label="Permalink to "问题反馈""></a></h2><p>大多数问题已在 <a href="https://docs.gitea.com/enterprise/faq" target="_blank" rel="noreferrer">FAQ</a> 中解答,如需进一步帮助请联系:</p><p><strong>邮箱</strong>: <a href="mailto:support@example.com" target="_blank" rel="noreferrer">support@example.com</a></p>',17)]))}const _=a(l,[["render",o]]);export{u as __pageData,_ as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as a,c as i,o as t,ag as r}from"./chunks/framework.S-Qvb3wi.js";const u=JSON.parse('{"title":"Gitea Enterprise 介绍","description":"","frontmatter":{"title":"Gitea Enterprise 介绍","sidebar":"auto"},"headers":[],"relativePath":"enterprise/index.md","filePath":"enterprise/index.md"}'),l={name:"enterprise/index.md"};function o(n,e,s,p,d,c){return t(),i("div",null,e[0]||(e[0]=[r("",17)]))}const _=a(l,[["render",o]]);export{u as __pageData,_ as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as i,c as d,o as e,ag as r,G as o}from"./chunks/framework.S-Qvb3wi.js";const a="/DevStar.png",l={name:"HomePage",methods:{handleClick(){alert("按钮被点击!")}}},n={id:"header"};function v(c,t,s,_,m,h){return e(),d("div",n,t[0]||(t[0]=[r('<h2 data-v-8dc2780e>我们的产品</h2><div class="product-container" data-v-8dc2780e><ol class="product-list" data-v-8dc2780e><li class="product-item" data-v-8dc2780e><div class="product-card" data-v-8dc2780e><img src="'+a+'" alt="产品1" class="product-image" data-v-8dc2780e><div class="product-info" data-v-8dc2780e><h3 class="product-title" data-v-8dc2780e>Devstar</h3><p class="product-desc" data-v-8dc2780e>DevStar Studio 是一个Gitea 发行版,在Git代码仓库托管的基础上提供了开发环境DevEnv执行引擎,与VS Code插件或自定义IDE深度融合,形成灵活适配基础软件工具的生态平台,从而为开发者用户提供智能(代码大模型AI+)、安全(完全云原生)、一站式开箱即用的CI/CD全生命周期研发平台</p><a href="/document/index" class="product-link" data-v-8dc2780e>介绍文档</a></div></div></li><li class="product-item" data-v-8dc2780e><div class="product-card" data-v-8dc2780e><img src="'+a+'" alt="产品2" class="product-image" data-v-8dc2780e><div class="product-info" data-v-8dc2780e><h3 class="product-title" data-v-8dc2780e>Devstar</h3><p class="product-desc" data-v-8dc2780e>DevStar Studio 是一个Gitea 发行版,在Git代码仓库托管的基础上提供了开发环境DevEnv执行引擎,与VS Code插件或自定义IDE深度融合,形成灵活适配基础软件工具的生态平台,从而为开发者用户提供智能(代码大模型AI+)、安全(完全云原生)、一站式开箱即用的CI/CD全生命周期研发平台</p><a href="/document/index" class="product-link" data-v-8dc2780e>介绍文档</a></div></div></li><li class="product-item" data-v-8dc2780e><div class="product-card" data-v-8dc2780e><img src="'+a+'" alt="产品3" class="product-image" data-v-8dc2780e><div class="product-info" data-v-8dc2780e><h3 class="product-title" data-v-8dc2780e>Devstar</h3><p class="product-desc" data-v-8dc2780e>DevStar Studio 是一个Gitea 发行版,在Git代码仓库托管的基础上提供了开发环境DevEnv执行引擎,与VS Code插件或自定义IDE深度融合,形成灵活适配基础软件工具的生态平台,从而为开发者用户提供智能(代码大模型AI+)、安全(完全云原生)、一站式开箱即用的CI/CD全生命周期研发平台</p><a href="/document/index" class="product-link" data-v-8dc2780e>介绍文档</a></div></div></li></ol></div>',2)]))}const p=i(l,[["render",v],["__scopeId","data-v-8dc2780e"]]),D=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"home","hero":{"text":"为中小型公司提供IT服务","tagline":"我们为各行各业提供定制软件解决方案,为您的企业打造高价值的软件和技术","image":{"src":"/slider1.png","alt":"背景图片"},"actions":[{"theme":"brand","text":"devstar入门","link":"/document/index"},{"theme":"alt","text":"devstar入门","link":"/document/index"},{"theme":"alt","text":"devstar入门","link":"/document/index"}]}},"headers":[],"relativePath":"index.md","filePath":"index.md"}'),u={name:"index.md"},f=Object.assign(u,{setup(c){return(t,s)=>(e(),d("div",null,[o(p)]))}});export{D as __pageData,f as default};
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
import{_ as i,c as d,o as e,ag as r,G as o}from"./chunks/framework.S-Qvb3wi.js";const a="/DevStar.png",l={name:"HomePage",methods:{handleClick(){alert("按钮被点击!")}}},n={id:"header"};function v(c,t,s,_,m,h){return e(),d("div",n,t[0]||(t[0]=[r("",2)]))}const p=i(l,[["render",v],["__scopeId","data-v-8dc2780e"]]),D=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"home","hero":{"text":"为中小型公司提供IT服务","tagline":"我们为各行各业提供定制软件解决方案,为您的企业打造高价值的软件和技术","image":{"src":"/slider1.png","alt":"背景图片"},"actions":[{"theme":"brand","text":"devstar入门","link":"/document/index"},{"theme":"alt","text":"devstar入门","link":"/document/index"},{"theme":"alt","text":"devstar入门","link":"/document/index"}]}},"headers":[],"relativePath":"index.md","filePath":"index.md"}'),u={name:"index.md"},f=Object.assign(u,{setup(c){return(t,s)=>(e(),d("div",null,[o(p)]))}});export{D as __pageData,f as default};
 | 
			
		||||
										
											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.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
import{_ as e,c as s,o as i,ag as n}from"./chunks/framework.S-Qvb3wi.js";const k=JSON.parse('{"title":"What is Gitea Runner","description":"","frontmatter":{"sidebar_position":1,"slug":"/"},"headers":[],"relativePath":"runner/index.md","filePath":"runner/index.md"}'),t={name:"runner/index.md"};function r(l,a,h,p,o,d){return i(),s("div",null,a[0]||(a[0]=[n("",32)]))}const u=e(t,[["render",r]]);export{k as __pageData,u as default};
 | 
			
		||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								docs/.vitepress/dist/background.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vitepress/dist/background.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 36 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/.vitepress/dist/devstar-logo.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vitepress/dist/devstar-logo.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 26 KiB  | 
							
								
								
									
										27
									
								
								docs/.vitepress/dist/document/index.html
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								docs/.vitepress/dist/document/index.html
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										44
									
								
								docs/.vitepress/dist/document/快速开始.html
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										44
									
								
								docs/.vitepress/dist/document/快速开始.html
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										27
									
								
								docs/.vitepress/dist/enterprise/index.html
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								docs/.vitepress/dist/enterprise/index.html
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										1
									
								
								docs/.vitepress/dist/hashmap.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								docs/.vitepress/dist/hashmap.json
									
									
									
									
										vendored
									
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
{"document_index.md":"BNMnkktn","document_installation_install-via-shell-script.md":"rfAwY06x","document_快速开始.md":"sbeOmH7c","enterprise_index.md":"D1yvtgOO","index.md":"5npbrEC4","runner_index.md":"D07NDeB4"}
 | 
			
		||||
							
								
								
									
										27
									
								
								docs/.vitepress/dist/index.html
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								docs/.vitepress/dist/index.html
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								docs/.vitepress/dist/mengninglogo.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vitepress/dist/mengninglogo.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 51 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/.vitepress/dist/mnsoftware.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vitepress/dist/mnsoftware.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 41 KiB  | 
							
								
								
									
										40
									
								
								docs/.vitepress/dist/runner/index.html
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										40
									
								
								docs/.vitepress/dist/runner/index.html
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								docs/.vitepress/dist/slider1.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/.vitepress/dist/slider1.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 156 KiB  | 
							
								
								
									
										1
									
								
								docs/.vitepress/dist/vp-icons.css
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								docs/.vitepress/dist/vp-icons.css
									
									
									
									
										vendored
									
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
.vpi-social-github{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 .297c-6.63 0-12 5.373-12 12c0 5.303 3.438 9.8 8.205 11.385c.6.113.82-.258.82-.577c0-.285-.01-1.04-.015-2.04c-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729c1.205.084 1.838 1.236 1.838 1.236c1.07 1.835 2.809 1.305 3.495.998c.108-.776.417-1.305.76-1.605c-2.665-.3-5.466-1.332-5.466-5.93c0-1.31.465-2.38 1.235-3.22c-.135-.303-.54-1.523.105-3.176c0 0 1.005-.322 3.3 1.23c.96-.267 1.98-.399 3-.405c1.02.006 2.04.138 3 .405c2.28-1.552 3.285-1.23 3.285-1.23c.645 1.653.24 2.873.12 3.176c.765.84 1.23 1.91 1.23 3.22c0 4.61-2.805 5.625-5.475 5.92c.42.36.81 1.096.81 2.22c0 1.606-.015 2.896-.015 3.286c0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")}
 | 
			
		||||
		Reference in New Issue
	
	Block a user