Compare commits
5 Commits
2db113a0c5
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
51cafac000 | ||
|
1fb6426c1a | ||
|
87f0cbb2cd | ||
|
342a7a7e0a | ||
|
f0e2aa237a |
16
.drone.yml
@@ -1,16 +0,0 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: deploy
|
||||
image: docker:dind
|
||||
commands:
|
||||
- apk add --upgrade npm bash findutils rsync sed
|
||||
- WORKDIR="/var/docker-web/apps/$DRONE_REPO_NAME"
|
||||
- rm -rf $WORKDIR
|
||||
- mkdir $WORKDIR
|
||||
- rsync -av --exclude ./node_modules /drone/src/ $WORKDIR
|
||||
- cd $WORKDIR
|
||||
- npm ci
|
||||
- bash /var/docker-web/src/cli.sh up $DRONE_REPO_NAME
|
21
.github/workflows/deploy.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Deploy App
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-22.04
|
||||
container:
|
||||
volumes:
|
||||
- /var/docker-web:/var/docker-web
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: install
|
||||
run: |
|
||||
APP_DIR=/var/docker-web/apps/${GITHUB_REPOSITORY##*/}
|
||||
mkdir -p $APP_DIR
|
||||
cp -a $(find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name 'node_modules') "$APP_DIR/"
|
||||
- name: up
|
||||
run: |
|
||||
export COMPOSE_BAKE=false
|
||||
bash /var/docker-web/src/cli.sh up ${GITHUB_REPOSITORY##*/}
|
89
.gitignore
vendored
@@ -1,83 +1,24 @@
|
||||
# Logs and databases #
|
||||
######################
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
*.db
|
||||
*.sqlite-journal
|
||||
/logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# OS generated files #
|
||||
######################
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# helmsman generated tmp folder
|
||||
.helmsman-tmp
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
|
||||
# next.js build output
|
||||
.next
|
||||
|
||||
# Nuxt
|
||||
*.log*
|
||||
# Nuxt dev/build outputs
|
||||
.output
|
||||
.data
|
||||
.nuxt
|
||||
.nitro
|
||||
.cache
|
||||
.output
|
||||
.env
|
||||
dist
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
# Node dependencies
|
||||
node_modules
|
||||
|
||||
# Serverless directories
|
||||
.serverless
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
||||
# IDE / Editor
|
||||
# Misc
|
||||
.DS_Store
|
||||
.fleet
|
||||
.idea
|
||||
|
||||
# Service worker
|
||||
sw.*
|
||||
|
||||
# Vim swap files
|
||||
*.swp
|
||||
|
||||
# Auto generate on postinstall step
|
||||
auto-imports.d.ts
|
||||
components.d.ts
|
||||
# Local env files
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
43
Dockerfile
@@ -1,37 +1,30 @@
|
||||
ARG NODE_VERSION=node:16.14.2-alpine
|
||||
# 1 - INSTALL
|
||||
FROM $NODE_VERSION AS install
|
||||
# Stage de build
|
||||
FROM node:20-alpine AS build
|
||||
|
||||
RUN mkdir -p /app
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json .
|
||||
COPY package-lock.json .
|
||||
COPY config.sh .
|
||||
RUN npm ci
|
||||
# Installer pnpm
|
||||
RUN npm install -g pnpm
|
||||
|
||||
# 2 - CONFIGURE
|
||||
FROM install AS configure
|
||||
# Copier package.json et lockfile pour cache pnpm
|
||||
COPY package.json pnpm-lock.yaml* ./
|
||||
|
||||
RUN pnpm install --frozen-lockfile
|
||||
|
||||
# Copier tout le projet
|
||||
COPY . .
|
||||
COPY config.sh .
|
||||
|
||||
# avoid conflict with nuxt build:
|
||||
RUN sed -i "s|PORT=.*||g" config.sh
|
||||
# Build Nuxt
|
||||
RUN pnpm build
|
||||
|
||||
RUN npm run build
|
||||
|
||||
# 3 - PRODUCTION
|
||||
FROM $NODE_VERSION AS production
|
||||
# Stage production
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=install /app/node_modules /app/node_modules
|
||||
COPY --from=configure /app /app
|
||||
COPY --from=build /app/.output .output
|
||||
COPY --from=build /app/package.json ./
|
||||
COPY --from=build /app/node_modules ./node_modules
|
||||
|
||||
ENV NUXT_HOST=0.0.0.0
|
||||
ARG NUXT_APP_VERSION
|
||||
ENV NUXT_APP_VERSION=${NUXT_APP_VERSION}
|
||||
ENV NODE_ENV=production
|
||||
|
||||
CMD source config.sh && node .output/server/index.mjs
|
||||
EXPOSE 3000
|
||||
CMD ["node", ".output/server/index.mjs"]
|
||||
|
@@ -6,18 +6,10 @@ export default {
|
||||
name: 'Transmission',
|
||||
component: resolveComponent('SvgTransmission')
|
||||
},
|
||||
{
|
||||
name: 'Drone',
|
||||
component: resolveComponent('SvgDrone')
|
||||
},
|
||||
{
|
||||
name: 'Gitea',
|
||||
component: resolveComponent('SvgGitea')
|
||||
},
|
||||
{
|
||||
name: 'Hoppscotch',
|
||||
component: resolveComponent('SvgHoppscotch')
|
||||
},
|
||||
{
|
||||
name: 'Jellyfin',
|
||||
component: resolveComponent('SvgJellyfin')
|
||||
@@ -25,14 +17,6 @@ export default {
|
||||
{
|
||||
name: 'Nextcloud',
|
||||
component: resolveComponent('SvgNextcloud')
|
||||
},
|
||||
{
|
||||
name: 'Plausible',
|
||||
component: resolveComponent('SvgPlausible')
|
||||
},
|
||||
{
|
||||
name: 'Penpot',
|
||||
component: resolveComponent('SvgPenpot')
|
||||
}
|
||||
]
|
||||
})
|
||||
@@ -46,13 +30,9 @@ export default {
|
||||
</h2>
|
||||
<ul class="flex justify-center p-2 max-w-full flex-wrap">
|
||||
<li v-for="app in apps" :key="app" class="m-4">
|
||||
<a
|
||||
:href="
|
||||
'https://github.com/docker-web/docker-web/tree/master/apps/' +
|
||||
app.name.toLowerCase()
|
||||
"
|
||||
:title="app.name"
|
||||
>
|
||||
<a :href="'https://github.com/docker-web/docker-web/tree/master/apps/' +
|
||||
app.name.toLowerCase()
|
||||
" :title="app.name">
|
||||
<component :is="app.component" class="app hover:scale-110" />
|
||||
</a>
|
||||
</li>
|
@@ -1,3 +1,26 @@
|
||||
<template>
|
||||
<h2 class="title"> Backup & restore </h2>
|
||||
<section class="docker-web-section">
|
||||
<Terminal :terminal-content="terminalContent" />
|
||||
<div class="flex flex-col items-center md:w-3/4 lg:w-1/2 h-20 relative rounded-b-xl transition-all">
|
||||
<div class="flex transition-all justify-center duration-1000" :class="startApps">
|
||||
<SvgGitea :class="penpotClass" class="app--backup" />
|
||||
<SvgDrone :class="giteaClass" class="app--backup hidden md:block" />
|
||||
<SvgPlausible :class="plausibleClass" class="app--backup" />
|
||||
</div>
|
||||
<div :class="endApps">
|
||||
<div class="app" :class="folderClass">
|
||||
<SvgFolder class="text-yellow-400" />
|
||||
<div class="-mt-7 text-sm text-center"> tar.gz </div>
|
||||
</div>
|
||||
<SvgStorj class="hidden" :class="storjClass" />
|
||||
</div>
|
||||
<div class="flex mt-10 w-14 absolute" :class="progressBarClass"> <span
|
||||
class="h-2 w-full absolute bg-black rounded-full opacity-10" /> <span
|
||||
class="h-2 absolute rounded-full bg-green-400 transition-all duration-1000" :class="progressClass" /> </div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data: () => ({
|
||||
@@ -14,16 +37,26 @@ export default {
|
||||
downClass: [],
|
||||
pauseClass: [],
|
||||
compressingClass: [],
|
||||
isDemonstrationEnded: false
|
||||
isDemonstrationEnded: false,
|
||||
timer: null
|
||||
}),
|
||||
created () {
|
||||
|
||||
mounted() {
|
||||
this.demonstration()
|
||||
},
|
||||
|
||||
beforeUnmount() {
|
||||
if (this.timer) {
|
||||
clearInterval(this.timer)
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
delay (time) {
|
||||
delay(time) {
|
||||
return new Promise(resolve => setTimeout(resolve, time))
|
||||
},
|
||||
demonstration () {
|
||||
|
||||
demonstration() {
|
||||
this.isDemonstrationEnded = false
|
||||
this.terminalContent = ''
|
||||
this.folderClass = this.storjClass = this.downClass
|
||||
@@ -76,10 +109,6 @@ export default {
|
||||
if (i === 5) { this.terminalContent += '[√] apps backup done\n' }
|
||||
|
||||
// docker-web restore
|
||||
|
||||
// this.progressClass = 'w-0'
|
||||
// this.startApps = 'w-full'
|
||||
|
||||
if (i === 7) { this.terminalContent = '' }
|
||||
if (i === 7) { this.progressClass = 'w-0' }
|
||||
|
||||
@@ -117,52 +146,32 @@ export default {
|
||||
|
||||
i += 1
|
||||
|
||||
if (i === 15) { this.isDemonstrationEnded = true }
|
||||
if (i === 15) { this.progressClass = 'w-0' }
|
||||
if (i === 15) { this.terminalContent = '' }
|
||||
// if (i === 15) clearInterval(this.timer)
|
||||
if (i === 15) { i = 0 }
|
||||
if (i === 15) {
|
||||
this.isDemonstrationEnded = true
|
||||
this.progressClass = 'w-0'
|
||||
this.terminalContent = ''
|
||||
i = 0
|
||||
}
|
||||
}, 1000)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<h2 class="title">
|
||||
Backup & restore
|
||||
</h2>
|
||||
<section class="docker-web-section">
|
||||
<Terminal :terminal-content="terminalContent" />
|
||||
<div
|
||||
class="flex flex-col items-center md:w-3/4 lg:w-1/2 h-20 relative rounded-b-xl transition-all"
|
||||
>
|
||||
<div
|
||||
class="flex transition-all justify-center duration-1000"
|
||||
:class="startApps"
|
||||
>
|
||||
<SvgGitea :class="penpotClass" class="app--backup" />
|
||||
<SvgDrone :class="giteaClass" class="app--backup hidden md:block" />
|
||||
<SvgPlausible :class="plausibleClass" class="app--backup" />
|
||||
</div>
|
||||
<div :class="endApps">
|
||||
<div class="app" :class="folderClass">
|
||||
<SvgFolder class="text-yellow-400" />
|
||||
<div class="-mt-7 text-sm text-center">
|
||||
tar.gz
|
||||
</div>
|
||||
</div>
|
||||
<SvgStorj class="hidden" :class="storjClass" />
|
||||
</div>
|
||||
<div class="flex mt-10 w-14 absolute" :class="progressBarClass">
|
||||
<span
|
||||
class="h-2 w-full absolute bg-black rounded-full opacity-10"
|
||||
/>
|
||||
<span
|
||||
class="h-2 absolute rounded-full bg-green-400 transition-all duration-1000"
|
||||
:class="progressClass"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<style>
|
||||
code {
|
||||
display: block;
|
||||
/* pour gérer le scroll */
|
||||
overflow-x: auto;
|
||||
/* scroll horizontal si nécessaire */
|
||||
scrollbar-width: none;
|
||||
/* Firefox */
|
||||
-ms-overflow-style: none;
|
||||
/* IE et Edge */
|
||||
}
|
||||
|
||||
code::-webkit-scrollbar {
|
||||
display: none;
|
||||
/* Chrome, Safari */
|
||||
}
|
||||
</style>
|
@@ -16,23 +16,23 @@ export default {
|
||||
opacity: '0'
|
||||
}
|
||||
}),
|
||||
created () {
|
||||
created() {
|
||||
this.nextcloudClass = this.jellyfinClass = []
|
||||
},
|
||||
beforeMount () {
|
||||
beforeMount() {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (!this.isPageScrolled) { this.demonstration() }
|
||||
this.isPageScrolled = true
|
||||
})
|
||||
},
|
||||
beforeUnmount () {
|
||||
beforeUnmount() {
|
||||
window.removeEventListener('scroll', () => {
|
||||
if (!this.isPageScrolled) { this.demonstration() }
|
||||
this.isPageScrolled = true
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
demonstration () {
|
||||
demonstration() {
|
||||
const upClass = [
|
||||
'w-20',
|
||||
'h-20',
|
||||
@@ -61,7 +61,7 @@ export default {
|
||||
'm-2'
|
||||
]
|
||||
|
||||
function delay (time) {
|
||||
function delay(time) {
|
||||
return new Promise(resolve => setTimeout(resolve, time))
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ export default {
|
||||
if (i === 1) this.terminalContent += 'Creating nextcloud ... done\n'
|
||||
if (i === 2) this.terminalContent += '[√] https://nextcloud.domain.com\n'
|
||||
if (i === 3) this.nextcloudClass = upClass
|
||||
if (i === 4) this.pointer = {left: '47%', top: '53%', opacity: '100'}
|
||||
if (i === 4) this.pointer = { left: '47%', top: '53%', opacity: '100' }
|
||||
// open
|
||||
if (i === 5) this.nextcloudClass.push('animate-openApp')
|
||||
if (i === 5) this.pointerClass = ['']
|
||||
@@ -95,7 +95,7 @@ export default {
|
||||
if (i === 6) this.subdomainClass = ['animate-click']
|
||||
// close
|
||||
if (i === 7) this.terminalContent = ''
|
||||
if (i === 8) this.pointer = {left: '10%', top: '3%'}
|
||||
if (i === 8) this.pointer = { left: '10%', top: '3%' }
|
||||
if (i === 9) this.backbuttonClass = ['']
|
||||
if (i === 9) this.backbuttonClass = ['animate-click']
|
||||
if (i === 10) this.nextcloudClass = closeClass
|
||||
@@ -115,7 +115,7 @@ export default {
|
||||
if (i === 12) this.terminalContent += 'Creating jellyfin ... done\n'
|
||||
if (i === 13) this.terminalContent += '[√] https://jellyfin.domain.com\n'
|
||||
if (i === 14) this.jellyfinClass = closeClass
|
||||
if (i === 16) this.pointer = {left: '47%', top: '53%', opacity: '100'}
|
||||
if (i === 16) this.pointer = { left: '47%', top: '53%', opacity: '100' }
|
||||
// open
|
||||
if (i === 16) this.jellyfinClass.push('animate-openApp')
|
||||
if (i === 16) this.pointerClass = ['animate-click']
|
||||
@@ -123,16 +123,16 @@ export default {
|
||||
if (i === 17) this.jellyfinClass = openClass
|
||||
if (i === 17) this.subDomain = 'jellyfin.'
|
||||
if (i === 17) this.subdomainClass = ['']
|
||||
if (i === 17) this.pointer = {left: '10%', top: '3%'}
|
||||
if (i === 17) this.pointer = { left: '10%', top: '3%' }
|
||||
if (i === 17) this.subdomainClass = ['animate-click']
|
||||
// close
|
||||
if (i === 19) this.backbuttonClass = ['']
|
||||
if (i === 19) this.backbuttonClass = ['animate-click']
|
||||
if (i === 19) this.pointer = {opacity: '0'}
|
||||
if (i === 19) this.pointer = { opacity: '0' }
|
||||
if (i === 20) this.jellyfinClass = this.nextcloudClass = closeClass
|
||||
if (i === 20) this.subDomain = ''
|
||||
if (i === 20) this.terminalContent = ''
|
||||
if (i === 21) this.pointer = {top: '100%', left: '0'}
|
||||
if (i === 21) this.pointer = { top: '100%', left: '0' }
|
||||
|
||||
// nextcloud down
|
||||
if (i === 23) {
|
||||
@@ -167,33 +167,18 @@ export default {
|
||||
<section class="docker-web-section">
|
||||
<Terminal :terminal-content="terminalContent" />
|
||||
<div
|
||||
class="bg-slate-400 flex flex-col items-center relative rounded-2xl w-full m-0 md:min-w-fit max-w-2xl md:-ml-8 md:z-0 overflow-hidden"
|
||||
>
|
||||
<div class="absolute block bg-black bg-opacity-10 rounded-full h-10 w-10 transition-all duration-700 ease-out" :class="pointerClass" :style="{left: pointer.left, top: pointer.top, opacity: pointer.opacity}"></div>
|
||||
<div
|
||||
class="bg-white flex items-center rounded-2xl pr-4 pl-2 py-1 m-4 w-4/5"
|
||||
>
|
||||
<SvgBackbutton
|
||||
class="mr-3 p-1 bg-slate-300 rounded-full"
|
||||
:class="backbuttonClass"
|
||||
/>
|
||||
class="bg-slate-400 flex flex-col items-center relative rounded-2xl w-full m-0 md:min-w-fit max-w-2xl md:-ml-8 md:z-0 overflow-hidden">
|
||||
<div class="absolute block bg-black bg-opacity-10 rounded-full h-10 w-10 transition-all duration-700 ease-out"
|
||||
:class="pointerClass" :style="{ left: pointer.left, top: pointer.top, opacity: pointer.opacity }"></div>
|
||||
<div class="bg-white flex items-center rounded-2xl pr-4 pl-2 py-1 m-4 w-4/5">
|
||||
<SvgBackbutton class="mr-3 p-1 bg-slate-300 rounded-full" :class="backbuttonClass" />
|
||||
<span class="text-gray-400"> https:// </span>
|
||||
<span class="text-indigo-700 font-bold" :class="subdomainClass">
|
||||
{{ subDomain }} </span>domain.com
|
||||
</div>
|
||||
<div
|
||||
class="bg-white w-full h-full flex rounded-b-xl justify-center items-center h-96 max-h-96"
|
||||
>
|
||||
<SvgNextcloud
|
||||
class="app-demo"
|
||||
:class="nextcloudClass"
|
||||
title="nextcloud.domain.com"
|
||||
/>
|
||||
<SvgJellyfin
|
||||
class="app-demo"
|
||||
:class="jellyfinClass"
|
||||
title="jellyfin.domain.com"
|
||||
/>
|
||||
<div class="bg-white w-full flex rounded-b-xl justify-center items-center h-96 max-h-96">
|
||||
<SvgNextcloud class="app-demo" :class="nextcloudClass" title="nextcloud.domain.com" />
|
||||
<SvgJellyfin class="app-demo" :class="jellyfinClass" title="jellyfin.domain.com" />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
@@ -2,7 +2,7 @@
|
||||
const isClicked = ref(false)
|
||||
const copyToClipBoard = () => {
|
||||
navigator.clipboard
|
||||
.writeText('curl -sL get.docker-web.com | sudo bash')
|
||||
.writeText('curl -sL getdweb.valere.dev | sudo bash')
|
||||
.then(() => {
|
||||
isClicked.value = true
|
||||
setTimeout(() => {
|
||||
@@ -14,22 +14,14 @@ const copyToClipBoard = () => {
|
||||
|
||||
<template>
|
||||
<section class="py-4 sm:flex justify-center items-center">
|
||||
<a
|
||||
href="https://github.com/docker-web/docker-web"
|
||||
target="_blank"
|
||||
class="py-4 px-6 h-14 leading-6 flex justify-center bg-indigo-600 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-xl shadow-md hover:bg-indigo-500 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all"
|
||||
>
|
||||
<a href="https://github.com/docker-web/docker-web" target="_blank"
|
||||
class="py-4 px-6 h-14 leading-6 flex justify-center bg-indigo-600 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-xl shadow-md hover:bg-indigo-500 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all">
|
||||
get started
|
||||
</a>
|
||||
<div
|
||||
class="font-mono bg-neutral-900 text-neutral-50 rounded-xl flex justify-between items-center pl-3 pr-4 py-4 sm:ml-4 border border-transparent text-base shadow-primary-700 relative"
|
||||
>
|
||||
<span class="select-all"> curl -L get.docker-web.com | sudo bash </span>
|
||||
<SvgClipboard
|
||||
class="ml-3 cursor-pointer"
|
||||
:class="{ 'animate-ping': isClicked }"
|
||||
@click="copyToClipBoard"
|
||||
/>
|
||||
class="font-mono bg-neutral-900 text-neutral-50 rounded-xl flex justify-between items-center pl-3 pr-4 py-4 sm:ml-4 border border-transparent text-base shadow-primary-700 relative">
|
||||
<span class="select-all"> curl -L getdweb.valere.dev | sudo bash </span>
|
||||
<SvgClipboard class="ml-3 cursor-pointer" :class="{ 'animate-ping': isClicked }" @click="copyToClipBoard" />
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<section>
|
||||
<div class="flex justify-center -ml-24 animate-slide">
|
||||
<div class="flex justify-center -ml-24 animate-slide h-52">
|
||||
<div class="py-4 mr-14 animate-fadeout opacity-0">
|
||||
<div class="bg-gray-400 h-px w-16 my-16 block" />
|
||||
<div class="bg-gray-400 h-px w-16 my-16 translate-x-3 block" />
|
17
app/components/scroll-down-button.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<section class="py-4 sm:flex justify-center items-center">
|
||||
<button @click="scrollDown"
|
||||
class="p-6 h-14 leading-3 flex justify-center bg-green-500 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-full shadow-md hover:bg-green-400 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all">
|
||||
↓
|
||||
</button>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
function scrollDown() {
|
||||
window.scrollBy({
|
||||
top: window.innerHeight, // une hauteur d’écran
|
||||
behavior: 'smooth' // animation fluide
|
||||
})
|
||||
}
|
||||
</script>
|
22
app/components/svg/docker-web.vue
Executable file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<svg class="MuiBox-root css-15p9n5u" fill="#ffffff" data-darkreader-inline-fill="" version="1.1"
|
||||
viewBox="0 0 195 194.57" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<g transform="translate(16.659 8.322)">
|
||||
<g transform="matrix(5.8877 0 0 5.8877 -343.49 62.039)" fill="#0062f8" fill-opacity=".4466">
|
||||
<circle cx="72.107" cy="4.5725" r="9.6731" />
|
||||
<circle cx="72.107" cy="4.5725" r="13.713" />
|
||||
<circle cx="72.107" cy="4.5725" r="16.523" />
|
||||
</g>
|
||||
<g fill="#fff">
|
||||
<path
|
||||
d="m81.055 55.167a26.753 26.753 0 0 0-26.758 26.758 26.753 26.753 0 0 0 0.35578 4.3254h52.804a26.753 26.753 0 0 0 0.35578-4.3254 26.753 26.753 0 0 0-26.758-26.758z"
|
||||
stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2.3" stroke-width="355.55"
|
||||
style="paint-order:fill markers stroke" />
|
||||
<path
|
||||
d="m142.46 84.801c-0.27036-0.22002-2.7968-2.1277-8.1202-2.1277-1.3298 0-2.7386 0.12463-4.1972 0.36143-1.0305-7.0771-6.8609-10.526-7.1311-10.68l-1.4337-0.8311-0.94337 1.3631c-1.179 1.8261-2.0377 3.84-2.539 5.955-0.95583 4.0393-0.3739 7.8292 1.6747 11.079-2.4767 1.3755-6.4246 1.737-7.2475 1.7453h-65.688c-1.7169 0.0068-3.1077 1.3957-3.1168 3.1126 1.1791 5.4589 1.1561 5.302 3.0636 10.314 2.2648 5.9426 5.6309 10.318 10.011 13.007 4.9077 3.0128 12.899 4.7374 21.925 4.7374 4.2222 0 8.436-0.38262 12.176-1.1054 5.8886-1.1345 11.241-3.0834 15.9-5.7805 4.0714-2.3599 7.7342-5.3631 10.846-8.8931 5.2028-5.901 6.5545-6.9499 10.422-11.718 0.31158 0.01438 0.61453 0.01917 0.91844 0.01917 5.6974 0 9.2048-2.2856 11.137-4.1972 2.0986-2.0778 2.8466-4.1473 2.9256-4.3759l0.40362-1.1968z"
|
||||
stroke-width="4.1556" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</template>
|
BIN
app/favicon/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/favicon/favicon-96x96.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
app/favicon/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
66
app/favicon/favicon.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="195" height="194.56551"><svg class="MuiBox-root css-15p9n5u" viewBox="0 0 195 194.56549" style="fill:#ffffff" data-darkreader-inline-fill="" version="1.1" id="SvgjsSvg1172" sodipodi:docname="logo.svg" width="195" height="194.56551" inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="SvgjsMetadata1171">
|
||||
<rdf:rdf>
|
||||
<cc:work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type>
|
||||
<dc:title></dc:title>
|
||||
</cc:work>
|
||||
</rdf:rdf>
|
||||
</metadata>
|
||||
<defs id="SvgjsDefs1170"></defs>
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1132" id="SvgjsSodipodi:namedview1169" showgrid="false" fit-margin-top="4" fit-margin-left="4" fit-margin-right="4" fit-margin-bottom="4" inkscape:zoom="0.91240154" inkscape:cx="132.06904" inkscape:cy="203.30961" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="g4" showguides="true" inkscape:guide-bbox="true" inkscape:showpageshadow="0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#505050">
|
||||
<inkscape:page x="0" y="0" width="195" height="194.56549" id="SvgjsInkscape:page1168" margin="0 0 0 0.43449217" bleed="0" inkscape:export-filename="Page 2.png" inkscape:export-xdpi="812.74384" inkscape:export-ydpi="812.74384"></inkscape:page>
|
||||
<inkscape:page x="0.43449402" y="241.8387" width="194.56551" height="194.56549" id="SvgjsInkscape:page1167" margin="0" bleed="0"></inkscape:page>
|
||||
<sodipodi:guide position="104.64025,131.07666" orientation="0,-1" id="SvgjsSodipodi:guide1166" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="96.414395,63.414758" orientation="0,-1" id="SvgjsSodipodi:guide1165" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="60.37471,114.72028" orientation="1,0" id="SvgjsSodipodi:guide1164" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="154.6693,104.36567" orientation="1,0" id="SvgjsSodipodi:guide1163" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="40.765196,69.076684" orientation="1,0" id="SvgjsSodipodi:guide1162" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="17.307314,90.012796" orientation="1,0" id="SvgjsSodipodi:guide1161" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="178.45516,78.096384" orientation="1,0" id="SvgjsSodipodi:guide1160" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="114.18738,154.23479" orientation="0,-1" id="SvgjsSodipodi:guide1159" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="115.0928,178.02065" orientation="0,-1" id="SvgjsSodipodi:guide1158" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="126.61803,16.544842" orientation="0,-1" id="SvgjsSodipodi:guide1157" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="107.01209,40.330695" orientation="0,-1" id="SvgjsSodipodi:guide1156" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="104.68642,-63.818053" orientation="0,-1" id="SvgjsSodipodi:guide1155" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="111.85964,-87.603905" orientation="0,-1" id="SvgjsSodipodi:guide1154" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="112.72049,-201.508" orientation="0,-1" id="SvgjsSodipodi:guide1153" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="117.90319,-225.29386" orientation="0,-1" id="SvgjsSodipodi:guide1152" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="108.84027,-110.76205" orientation="0,-1" id="SvgjsSodipodi:guide1151" inkscape:locked="false"></sodipodi:guide>
|
||||
<sodipodi:guide position="100.562,-178.43168" orientation="0,-1" id="SvgjsSodipodi:guide1150" inkscape:locked="false"></sodipodi:guide>
|
||||
</sodipodi:namedview>
|
||||
<g inkscape:groupmode="layer" id="SvgjsG1149" inkscape:label="dark" style="display:inline" transform="translate(241.4509,5.6112637)">
|
||||
<rect style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-linecap:square;stroke-miterlimit:2.3;paint-order:markers stroke fill" id="SvgjsRect1148" width="194.56551" height="194.56551" x="-241.0164" y="236.22746" inkscape:label="background"></rect>
|
||||
<g style="display:inline;fill:#0062f8;fill-opacity:0.446602" transform="matrix(5.8876865,0,0,5.8876865,-568.27833,306.58873)" id="SvgjsG1147" inkscape:label="circles">
|
||||
<circle style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1" id="SvgjsCircle1146" cx="72.107216" cy="4.5725055" r="9.6730785" inkscape:label="small"></circle>
|
||||
<circle style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1" id="SvgjsCircle1145" cx="72.107216" cy="4.5725055" r="13.713011" inkscape:label="medium"></circle>
|
||||
<circle style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1" id="SvgjsCircle1144" cx="72.107216" cy="4.5725055" r="16.523087" inkscape:label="big"></circle>
|
||||
</g>
|
||||
<g id="SvgjsG1143" style="display:inline;fill:#e6e6e6" inkscape:label="logo" transform="translate(-224.06334,241.83872)">
|
||||
<path id="SvgjsPath1142" style="fill:#e6e6e6;stroke-width:355.553;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.3;paint-order:fill markers stroke" d="m 80.326047,57.877579 a 26.752747,26.752747 0 0 0 -26.757729,26.75772 26.752747,26.752747 0 0 0 0.355777,4.325427 h 52.803915 a 26.752747,26.752747 0 0 0 0.35578,-4.325427 26.752747,26.752747 0 0 0 -26.757743,-26.75772 z" inkscape:label="app"></path>
|
||||
<path inkscape:connector-curvature="0" style="display:inline;fill:#e6e6e6;stroke-width:4.15564" id="SvgjsPath1141" d="m 141.72941,87.511292 c -0.27036,-0.220024 -2.79675,-2.127682 -8.12017,-2.127682 -1.32983,0 -2.73855,0.124632 -4.19723,0.361433 -1.03052,-7.077067 -6.86091,-10.526234 -7.13107,-10.679982 l -1.43366,-0.831105 -0.94337,1.363054 c -1.17902,1.826063 -2.03773,3.839986 -2.53904,5.955013 -0.95583,4.039291 -0.3739,7.829232 1.67467,11.078959 -2.47673,1.375518 -6.4246,1.737047 -7.24746,1.74534 H 46.103913 c -1.716853,0.0068 -3.107653,1.395727 -3.116761,3.112612 1.179117,5.458916 1.156108,5.301996 3.063553,10.313696 2.264759,5.94255 5.630883,10.31844 10.010938,13.00715 4.907729,3.01284 12.89905,4.73743 21.925106,4.73743 4.222155,0 8.43597,-0.38262 12.175991,-1.10541 5.888584,-1.13446 11.24106,-3.08345 15.89952,-5.78046 4.07145,-2.35991 7.7342,-5.36307 10.84626,-8.89307 5.20282,-5.90104 6.55451,-6.94991 10.42156,-11.718366 0.31158,0.01438 0.61453,0.01917 0.91844,0.01917 5.69742,0 9.20476,-2.285601 11.13713,-4.197162 2.09862,-2.07782 2.8466,-4.147348 2.9256,-4.375894 l 0.40362,-1.196834 z" sodipodi:nodetypes="cscccccccccccsccccscccc" inkscape:label="wahle"></path>
|
||||
</g>
|
||||
<g id="SvgjsG1140" style="font-size:55.66px;line-height:1.25;font-family:Comfortaa;-inkscape-font-specification:Comfortaa;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;stroke-width:0.69575" aria-label="docker web" transform="matrix(6.7317198,0,0,6.7317198,-58.468582,-176.22368)">
|
||||
<path style="font-size:12.9873px;fill:#cccccc" d="m 18.474617,38.619916 v -3.842921 h 1.166827 v 9.867304 h -1.166827 v -1.065365 q -0.367805,0.634146 -0.932194,0.944877 -0.558048,0.30439 -1.344389,0.30439 -1.287315,0 -2.099021,-1.027316 -0.805365,-1.027316 -0.805365,-2.70146 0,-1.674144 0.805365,-2.70146 0.811706,-1.027315 2.099021,-1.027315 0.786341,0 1.344389,0.310731 0.564389,0.30439 0.932194,0.938535 z m -3.976093,2.479509 q 0,1.287316 0.526341,2.022924 0.532682,0.729268 1.458535,0.729268 0.925852,0 1.458535,-0.729268 0.532682,-0.735608 0.532682,-2.022924 0,-1.287315 -0.532682,-2.016583 -0.532683,-0.735608 -1.458535,-0.735608 -0.925853,0 -1.458535,0.735608 -0.526341,0.729268 -0.526341,2.016583 z m 10.298524,-2.739508 q -0.938536,0 -1.483901,0.735608 -0.545365,0.729268 -0.545365,2.0039 0,1.274633 0.539024,2.010241 0.545365,0.729268 1.490242,0.729268 0.932193,0 1.477559,-0.735609 0.545365,-0.735609 0.545365,-2.0039 0,-1.261949 -0.545365,-1.997558 -0.545366,-0.74195 -1.477559,-0.74195 z m 0,-0.989267 q 1.521949,0 2.390728,0.989267 0.868779,0.989267 0.868779,2.739508 0,1.7439 -0.868779,2.739509 -0.868779,0.989267 -2.390728,0.989267 -1.528291,0 -2.39707,-0.989267 -0.862438,-0.995609 -0.862438,-2.739509 0,-1.750241 0.862438,-2.739508 0.868779,-0.989267 2.39707,-0.989267 z m 10.304865,0.443901 v 1.090731 q -0.494634,-0.272683 -0.995609,-0.405853 -0.494633,-0.139512 -1.00195,-0.139512 -1.13512,0 -1.762924,0.722925 -0.627804,0.716585 -0.627804,2.016583 0,1.299998 0.627804,2.022924 0.627804,0.716585 1.762924,0.716585 0.507317,0 1.00195,-0.133171 0.500975,-0.139512 0.995609,-0.412194 v 1.078047 q -0.488292,0.228292 -1.014633,0.342439 -0.52,0.114146 -1.109755,0.114146 -1.604388,0 -2.549265,-1.008292 -0.944877,-1.008291 -0.944877,-2.720484 0,-1.737558 0.951219,-2.733167 0.957559,-0.995608 2.619021,-0.995608 0.539023,0 1.052681,0.114146 0.513658,0.107805 0.995609,0.329755 z m 1.984875,-3.037556 h 1.173169 v 5.827797 l 3.481459,-3.062923 h 1.490242 l -3.766825,3.322922 3.925361,3.779508 h -1.521949 l -3.608288,-3.468776 v 3.468776 h -1.173169 z m 13.177543,6.024382 v 0.570731 H 44.89946 q 0.0761,1.204876 0.722925,1.839022 0.65317,0.627804 1.813657,0.627804 0.672194,0 1.299998,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287315,0.405853 -0.659512,0.139512 -1.338047,0.139512 -1.69951,0 -2.695119,-0.989267 Q 43.6819,42.849667 43.6819,41.16284 q 0,-1.7439 0.938536,-2.764875 0.944876,-1.027315 2.542923,-1.027315 1.433169,0 2.2639,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166828,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.566339,0.551706 -0.583414,0.551707 -0.672195,1.553657 z m 7.197552,-1.826339 q -0.196585,-0.114146 -0.431219,-0.164878 -0.228292,-0.05707 -0.507316,-0.05707 -0.989267,0 -1.521949,0.646829 -0.526341,0.640487 -0.526341,1.845363 v 3.741459 h -1.173169 v -7.10243 h 1.173169 v 1.103413 q 0.367804,-0.646828 0.95756,-0.95756 0.589755,-0.317072 1.433169,-0.317072 0.120487,0 0.266341,0.01902 0.145853,0.01268 0.323414,0.04439 z" id="SvgjsPath1139"></path>
|
||||
<path style="font-size:12.9873px;fill:#e6e6e6" d="m 60.968708,37.541869 h 1.166828 l 1.458534,5.542432 1.452193,-5.542432 h 1.376096 l 1.458535,5.542432 1.452193,-5.542432 h 1.166828 l -1.858047,7.10243 h -1.376095 l -1.528291,-5.821456 -1.534632,5.821456 h -1.376096 z m 17.375586,3.259508 v 0.570731 h -5.364871 q 0.0761,1.204876 0.722926,1.839022 0.65317,0.627804 1.813656,0.627804 0.672195,0 1.299999,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287316,0.405853 -0.659511,0.139512 -1.338047,0.139512 -1.69951,0 -2.695118,-0.989267 -0.989267,-0.989267 -0.989267,-2.676094 0,-1.7439 0.938535,-2.764875 0.944877,-1.027315 2.542924,-1.027315 1.433169,0 2.263899,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166827,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.56634,0.551706 -0.583414,0.551707 -0.672194,1.553657 z m 8.180478,0.640487 q 0,-1.287315 -0.532683,-2.016583 -0.52634,-0.735608 -1.452193,-0.735608 -0.925852,0 -1.458535,0.735608 -0.52634,0.729268 -0.52634,2.016583 0,1.287316 0.52634,2.022924 0.532683,0.729268 1.458535,0.729268 0.925853,0 1.452193,-0.729268 0.532683,-0.735608 0.532683,-2.022924 z m -3.969751,-2.479509 q 0.367804,-0.634145 0.925852,-0.938535 0.56439,-0.310731 1.344389,-0.310731 1.293656,0 2.099021,1.027315 0.811706,1.027316 0.811706,2.70146 0,1.674144 -0.811706,2.70146 -0.805365,1.027316 -2.099021,1.027316 -0.779999,0 -1.344389,-0.30439 -0.558048,-0.310731 -0.925852,-0.944877 v 1.065365 h -1.173169 v -9.867304 h 1.173169 z" id="SvgjsPath1138"></path>
|
||||
</g>
|
||||
<g id="SvgjsG1137" style="font-size:55.66px;line-height:1.25;font-family:Comfortaa;-inkscape-font-specification:Comfortaa;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;stroke-width:0.69575" aria-label="docker web" transform="matrix(6.7324888,0,0,6.7324888,-58.478812,65.588292)">
|
||||
<path style="font-size:12.9873px;fill:#cccccc" d="m 18.474617,38.619916 v -3.842921 h 1.166827 v 9.867304 h -1.166827 v -1.065365 q -0.367805,0.634146 -0.932194,0.944877 -0.558048,0.30439 -1.344389,0.30439 -1.287315,0 -2.099021,-1.027316 -0.805365,-1.027316 -0.805365,-2.70146 0,-1.674144 0.805365,-2.70146 0.811706,-1.027315 2.099021,-1.027315 0.786341,0 1.344389,0.310731 0.564389,0.30439 0.932194,0.938535 z m -3.976093,2.479509 q 0,1.287316 0.526341,2.022924 0.532682,0.729268 1.458535,0.729268 0.925852,0 1.458535,-0.729268 0.532682,-0.735608 0.532682,-2.022924 0,-1.287315 -0.532682,-2.016583 -0.532683,-0.735608 -1.458535,-0.735608 -0.925853,0 -1.458535,0.735608 -0.526341,0.729268 -0.526341,2.016583 z m 10.298524,-2.739508 q -0.938536,0 -1.483901,0.735608 -0.545365,0.729268 -0.545365,2.0039 0,1.274633 0.539024,2.010241 0.545365,0.729268 1.490242,0.729268 0.932193,0 1.477559,-0.735609 0.545365,-0.735609 0.545365,-2.0039 0,-1.261949 -0.545365,-1.997558 -0.545366,-0.74195 -1.477559,-0.74195 z m 0,-0.989267 q 1.521949,0 2.390728,0.989267 0.868779,0.989267 0.868779,2.739508 0,1.7439 -0.868779,2.739509 -0.868779,0.989267 -2.390728,0.989267 -1.528291,0 -2.39707,-0.989267 -0.862438,-0.995609 -0.862438,-2.739509 0,-1.750241 0.862438,-2.739508 0.868779,-0.989267 2.39707,-0.989267 z m 10.304865,0.443901 v 1.090731 q -0.494634,-0.272683 -0.995609,-0.405853 -0.494633,-0.139512 -1.00195,-0.139512 -1.13512,0 -1.762924,0.722925 -0.627804,0.716585 -0.627804,2.016583 0,1.299998 0.627804,2.022924 0.627804,0.716585 1.762924,0.716585 0.507317,0 1.00195,-0.133171 0.500975,-0.139512 0.995609,-0.412194 v 1.078047 q -0.488292,0.228292 -1.014633,0.342439 -0.52,0.114146 -1.109755,0.114146 -1.604388,0 -2.549265,-1.008292 -0.944877,-1.008291 -0.944877,-2.720484 0,-1.737558 0.951219,-2.733167 0.957559,-0.995608 2.619021,-0.995608 0.539023,0 1.052681,0.114146 0.513658,0.107805 0.995609,0.329755 z m 1.984875,-3.037556 h 1.173169 v 5.827797 l 3.481459,-3.062923 h 1.490242 l -3.766825,3.322922 3.925361,3.779508 h -1.521949 l -3.608288,-3.468776 v 3.468776 h -1.173169 z m 13.177543,6.024382 v 0.570731 H 44.89946 q 0.0761,1.204876 0.722925,1.839022 0.65317,0.627804 1.813657,0.627804 0.672194,0 1.299998,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287315,0.405853 -0.659512,0.139512 -1.338047,0.139512 -1.69951,0 -2.695119,-0.989267 Q 43.6819,42.849667 43.6819,41.16284 q 0,-1.7439 0.938536,-2.764875 0.944876,-1.027315 2.542923,-1.027315 1.433169,0 2.2639,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166828,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.566339,0.551706 -0.583414,0.551707 -0.672195,1.553657 z m 7.197552,-1.826339 q -0.196585,-0.114146 -0.431219,-0.164878 -0.228292,-0.05707 -0.507316,-0.05707 -0.989267,0 -1.521949,0.646829 -0.526341,0.640487 -0.526341,1.845363 v 3.741459 h -1.173169 v -7.10243 h 1.173169 v 1.103413 q 0.367804,-0.646828 0.95756,-0.95756 0.589755,-0.317072 1.433169,-0.317072 0.120487,0 0.266341,0.01902 0.145853,0.01268 0.323414,0.04439 z" id="SvgjsPath1136"></path>
|
||||
<path style="font-size:12.9873px;fill:#e6e6e6" d="m 60.968708,37.541869 h 1.166828 l 1.458534,5.542432 1.452193,-5.542432 h 1.376096 l 1.458535,5.542432 1.452193,-5.542432 h 1.166828 l -1.858047,7.10243 h -1.376095 l -1.528291,-5.821456 -1.534632,5.821456 h -1.376096 z m 17.375586,3.259508 v 0.570731 h -5.364871 q 0.0761,1.204876 0.722926,1.839022 0.65317,0.627804 1.813656,0.627804 0.672195,0 1.299999,-0.164878 0.634145,-0.164878 1.255608,-0.494634 v 1.103414 q -0.627804,0.266341 -1.287316,0.405853 -0.659511,0.139512 -1.338047,0.139512 -1.69951,0 -2.695118,-0.989267 -0.989267,-0.989267 -0.989267,-2.676094 0,-1.7439 0.938535,-2.764875 0.944877,-1.027315 2.542924,-1.027315 1.433169,0 2.263899,0.925852 0.837072,0.919511 0.837072,2.504875 z m -1.166827,-0.342439 q -0.01268,-0.957559 -0.539024,-1.52829 -0.519999,-0.570731 -1.382437,-0.570731 -0.976584,0 -1.56634,0.551706 -0.583414,0.551707 -0.672194,1.553657 z m 8.180478,0.640487 q 0,-1.287315 -0.532683,-2.016583 -0.52634,-0.735608 -1.452193,-0.735608 -0.925852,0 -1.458535,0.735608 -0.52634,0.729268 -0.52634,2.016583 0,1.287316 0.52634,2.022924 0.532683,0.729268 1.458535,0.729268 0.925853,0 1.452193,-0.729268 0.532683,-0.735608 0.532683,-2.022924 z m -3.969751,-2.479509 q 0.367804,-0.634145 0.925852,-0.938535 0.56439,-0.310731 1.344389,-0.310731 1.293656,0 2.099021,1.027315 0.811706,1.027316 0.811706,2.70146 0,1.674144 -0.811706,2.70146 -0.805365,1.027316 -2.099021,1.027316 -0.779999,0 -1.344389,-0.30439 -0.558048,-0.310731 -0.925852,-0.944877 v 1.065365 h -1.173169 v -9.867304 h 1.173169 z" id="SvgjsPath1135"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g inkscape:groupmode="layer" id="SvgjsG1134" inkscape:label="bright" style="fill:#ffffff;display:inline" transform="translate(16.658678,8.3220275)">
|
||||
<g style="display:inline;fill:#0062f8;fill-opacity:0.446602" transform="matrix(5.8876865,0,0,5.8876865,-343.48611,62.039248)" id="SvgjsG1133" inkscape:label="circles">
|
||||
<circle style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1" id="SvgjsCircle1132" cx="72.107216" cy="4.5725055" r="9.6730785" inkscape:label="small"></circle>
|
||||
<circle style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1" id="SvgjsCircle1131" cx="72.107216" cy="4.5725055" r="13.713011" inkscape:label="medium"></circle>
|
||||
<circle style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1" id="SvgjsCircle1130" cx="72.107216" cy="4.5725055" r="16.523087" inkscape:label="big"></circle>
|
||||
</g>
|
||||
<g id="SvgjsG1129" inkscape:label="logo">
|
||||
<path id="SvgjsPath1128" style="fill:#ffffff;stroke-width:355.553;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.3;paint-order:fill markers stroke" d="m 81.054927,55.166816 a 26.752747,26.752747 0 0 0 -26.757729,26.75772 26.752747,26.752747 0 0 0 0.355777,4.325427 h 52.803915 a 26.752747,26.752747 0 0 0 0.35578,-4.325427 26.752747,26.752747 0 0 0 -26.757743,-26.75772 z" inkscape:label="app"></path>
|
||||
<path inkscape:connector-curvature="0" style="display:inline;fill:#ffffff;stroke-width:4.15564" id="SvgjsPath1127" d="m 142.45829,84.800529 c -0.27036,-0.220024 -2.79675,-2.127682 -8.12017,-2.127682 -1.32983,0 -2.73855,0.124632 -4.19723,0.361433 -1.03052,-7.077067 -6.86091,-10.526234 -7.13107,-10.679982 l -1.43366,-0.831105 -0.94337,1.363054 c -1.17902,1.826063 -2.03773,3.839986 -2.53904,5.955013 -0.95583,4.039291 -0.3739,7.829232 1.67467,11.078959 -2.47673,1.375518 -6.4246,1.737047 -7.24746,1.74534 H 46.832793 c -1.716853,0.0068 -3.107653,1.395727 -3.116761,3.112612 1.179117,5.458909 1.156108,5.301989 3.063553,10.313689 2.264759,5.94255 5.630883,10.31844 10.010938,13.00715 4.907729,3.01284 12.89905,4.73743 21.925106,4.73743 4.222155,0 8.43597,-0.38262 12.175991,-1.10541 5.888584,-1.13446 11.24106,-3.08345 15.89952,-5.78046 4.07145,-2.35991 7.7342,-5.36307 10.84626,-8.89307 5.20282,-5.90104 6.55451,-6.94991 10.42156,-11.718359 0.31158,0.01438 0.61453,0.01917 0.91844,0.01917 5.69742,0 9.20476,-2.285601 11.13713,-4.197162 2.09862,-2.07782 2.8466,-4.147348 2.9256,-4.375894 l 0.40362,-1.196834 z" sodipodi:nodetypes="cscccccccccccsccccscccc" inkscape:label="wahle"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
|
||||
@media (prefers-color-scheme: dark) { :root { filter: none; } }
|
||||
</style></svg>
|
After Width: | Height: | Size: 20 KiB |
21
app/favicon/site.webmanifest
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "docker-web",
|
||||
"short_name": "docker-web",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
BIN
app/favicon/web-app-manifest-192x192.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
app/favicon/web-app-manifest-512x512.png
Normal file
After Width: | Height: | Size: 38 KiB |
@@ -2,19 +2,16 @@
|
||||
<div class="mx-6">
|
||||
<header class="h-screen flex flex-col justify-center">
|
||||
<nav class="fixed right-0 top-0 p-2 z-50">
|
||||
<a
|
||||
title="Go to docker-web GitHub repo"
|
||||
href="https://github.com/docker-web/docker-web"
|
||||
target="_blank"
|
||||
>
|
||||
<a title="Go to docker-web GitHub repo" href="https://github.com/docker-web/docker-web" target="_blank">
|
||||
<SvgGithub class="bg-white rounded-full shadow-lg hover:scale-105" />
|
||||
</a>
|
||||
</nav>
|
||||
<HeroTitle client:visible />
|
||||
<HeroButtons client:visible />
|
||||
<ScrollDownButton client:visible />
|
||||
</header>
|
||||
<main class="-mt-20">
|
||||
<Demo />
|
||||
<main class="">
|
||||
<Demo class="mt-20" />
|
||||
<Disclaimer />
|
||||
<!-- <Create /> -->
|
||||
<BackupRestore />
|
||||
@@ -27,15 +24,19 @@
|
||||
.docker-web-section {
|
||||
@apply flex flex-col md:flex-row items-center justify-center mb-28;
|
||||
}
|
||||
|
||||
.title {
|
||||
@apply text-3xl text-center mb-10 uppercase text-transparent bg-clip-text bg-gradient-to-r from-violet-900 to-blue-500;
|
||||
@apply text-3xl text-center mb-10 uppercase text-transparent bg-clip-text bg-gradient-to-r from-violet-900 to-blue-500;
|
||||
}
|
||||
|
||||
.app {
|
||||
@apply bg-black bg-opacity-10 w-20 h-20 p-4 flex-wrap cursor-pointer inline-block rounded-xl transition-all;
|
||||
}
|
||||
|
||||
.app--demo {
|
||||
@apply bg-black bg-opacity-10 w-20 h-20 p-4 flex-wrap cursor-pointer inline-block transition-all;
|
||||
}
|
||||
|
||||
.app--backup {
|
||||
@apply bg-black bg-opacity-10 w-20 h-20 p-4 flex-wrap cursor-pointer inline-block transition-all;
|
||||
}
|
0
types/todo.d.ts → app/types/todo.d.ts
vendored
116
auto-imports.d.ts
vendored
@@ -1,116 +0,0 @@
|
||||
// Generated by 'unplugin-auto-import'
|
||||
export {}
|
||||
declare global {
|
||||
const EffectScope: typeof import('vue')['EffectScope']
|
||||
const computed: typeof import('vue')['computed']
|
||||
const createApp: typeof import('vue')['createApp']
|
||||
const customRef: typeof import('vue')['customRef']
|
||||
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
||||
const defineComponent: typeof import('vue')['defineComponent']
|
||||
const effectScope: typeof import('vue')['effectScope']
|
||||
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
||||
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
||||
const h: typeof import('vue')['h']
|
||||
const inject: typeof import('vue')['inject']
|
||||
const isProxy: typeof import('vue')['isProxy']
|
||||
const isReactive: typeof import('vue')['isReactive']
|
||||
const isReadonly: typeof import('vue')['isReadonly']
|
||||
const isRef: typeof import('vue')['isRef']
|
||||
const markRaw: typeof import('vue')['markRaw']
|
||||
const nextTick: typeof import('vue')['nextTick']
|
||||
const onActivated: typeof import('vue')['onActivated']
|
||||
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
||||
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
||||
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
||||
const onDeactivated: typeof import('vue')['onDeactivated']
|
||||
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
||||
const onMounted: typeof import('vue')['onMounted']
|
||||
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
||||
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
||||
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
||||
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
||||
const onUnmounted: typeof import('vue')['onUnmounted']
|
||||
const onUpdated: typeof import('vue')['onUpdated']
|
||||
const provide: typeof import('vue')['provide']
|
||||
const reactive: typeof import('vue')['reactive']
|
||||
const readonly: typeof import('vue')['readonly']
|
||||
const ref: typeof import('vue')['ref']
|
||||
const resolveComponent: typeof import('vue')['resolveComponent']
|
||||
const resolveDirective: typeof import('vue')['resolveDirective']
|
||||
const shallowReactive: typeof import('vue')['shallowReactive']
|
||||
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
||||
const shallowRef: typeof import('vue')['shallowRef']
|
||||
const toRaw: typeof import('vue')['toRaw']
|
||||
const toRef: typeof import('vue')['toRef']
|
||||
const toRefs: typeof import('vue')['toRefs']
|
||||
const triggerRef: typeof import('vue')['triggerRef']
|
||||
const unref: typeof import('vue')['unref']
|
||||
const useAttrs: typeof import('vue')['useAttrs']
|
||||
const useCssModule: typeof import('vue')['useCssModule']
|
||||
const useCssVars: typeof import('vue')['useCssVars']
|
||||
const useHead: typeof import('@vueuse/head')['useHead']
|
||||
const useSlots: typeof import('vue')['useSlots']
|
||||
const watch: typeof import('vue')['watch']
|
||||
const watchEffect: typeof import('vue')['watchEffect']
|
||||
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||
}
|
||||
// for vue template auto import
|
||||
import { UnwrapRef } from 'vue'
|
||||
declare module 'vue' {
|
||||
interface ComponentCustomProperties {
|
||||
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
||||
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
||||
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
||||
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
||||
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
||||
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
||||
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
||||
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
||||
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
||||
readonly h: UnwrapRef<typeof import('vue')['h']>
|
||||
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
||||
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
||||
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
||||
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
||||
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
||||
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
||||
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
||||
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
||||
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
||||
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
||||
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
||||
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
||||
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
||||
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
||||
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
||||
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
||||
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
||||
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
||||
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
||||
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
||||
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
||||
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
||||
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
||||
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
||||
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
||||
readonly resolveDirective: UnwrapRef<typeof import('vue')['resolveDirective']>
|
||||
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
||||
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
||||
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
||||
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
||||
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
||||
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
||||
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
||||
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
||||
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
||||
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
||||
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
||||
readonly useHead: UnwrapRef<typeof import('@vueuse/head')['useHead']>
|
||||
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
||||
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
||||
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
||||
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
||||
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
||||
}
|
||||
}
|
13
components.d.ts
vendored
@@ -1,13 +0,0 @@
|
||||
// generated by unplugin-vue-components
|
||||
// We suggest you to commit this file into source control
|
||||
// Read more: https://github.com/vuejs/core/pull/3399
|
||||
import '@vue/runtime-core'
|
||||
|
||||
export {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
export interface GlobalComponents {
|
||||
RouterLink: typeof import('vue-router')['RouterLink']
|
||||
RouterView: typeof import('vue-router')['RouterView']
|
||||
}
|
||||
}
|
@@ -1,32 +0,0 @@
|
||||
<template>
|
||||
<svg width="111.83958mm" height="111.83958mm" viewBox="0 0 111.83957 111.83957" version="1.1" id="svg1"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)" sodipodi:docname="logo.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-49.080209,-92.580211)">
|
||||
<g id="g2" transform="matrix(5.5108247,0,0,5.5108247,118.69148,125.59682)" style="display:inline;fill:#ffffff">
|
||||
<g style="display:inline;fill:#0062f8;fill-opacity:0.446602"
|
||||
transform="matrix(0.61412638,0,0,0.61412638,-46.767414,1.3479387)" id="g1236-3-3-2">
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-2-6-6-9" cx="72.107216" cy="4.5725055" r="9.6730785" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-9-7-7-1" cx="72.107216" cy="4.5725055" r="13.713011" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-1-5-5-27" cx="72.107216" cy="4.5725055" r="16.523087" />
|
||||
</g>
|
||||
<path inkscape:connector-curvature="0" style="display:inline;fill:#ffffff;stroke-width:0.433462"
|
||||
id="path881-7-5-5-0"
|
||||
d="m 3.9199448,3.7220977 c -0.0282,-0.02295 -0.29172,-0.221932 -0.84699,-0.221932 -0.13871,0 -0.28565,0.013 -0.4378,0.0377 -0.10749,-0.738187 -0.71564,-1.097959 -0.74382,-1.113996 l -0.14954,-0.08669 -0.0984,0.142176 c -0.12298,0.190471 -0.21255,0.400537 -0.26484,0.621149 -0.0997,0.421326 -0.039,0.816643 0.17468,1.155612 -0.25834,0.143476 -0.67013003,0.181186 -0.75596003,0.182051 H -6.0544552 c -0.17908,7.09e-4 -0.32415,0.145584 -0.3251,0.324667 0.12299,0.569402 0.12059,0.553034 0.31955,1.075789 0.23623,0.619849 0.58734,1.076285 1.04421,1.356736 0.51191,0.31426 1.34546,0.494146 2.28694,0.494146 0.4404,0 0.87993,-0.03991 1.27004,-0.115302 0.61422,-0.118332 1.17252,-0.321625 1.65843,-0.602942 0.42468,-0.246154 0.80673,-0.559405 1.13134,-0.927608 0.54269,-0.615519 0.68368,-0.724924 1.08704,-1.222306 0.0325,0.0015 0.0641,0.002 0.0958,0.002 0.59428,0 0.96012,-0.238404 1.16168,-0.437793 0.2189,-0.216731 0.29692,-0.432597 0.30516,-0.456436 l 0.0421,-0.124838 z"
|
||||
sodipodi:nodetypes="cscccccccccccsccccscccc" />
|
||||
<path
|
||||
style="font-weight:bold;font-size:3.06667px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';letter-spacing:0px;display:inline;fill:#ffffff;stroke-width:1.51181"
|
||||
d="m -6.3933452,1.1512817 h 0.55254 l 0.38633,1.624676 0.38333,-1.624676 h 0.55553 l 0.38334,1.624676 0.38633,-1.624676 h 0.54804 l -0.52708,2.235614 h -0.66484 l -0.4058,-1.699546 -0.4013,1.699546 h -0.66485 z m 5.11361,1.392579 v 0.152735 h -1.25332 q 0.0195,0.188672 0.13626,0.283008 0.1168,0.09434 0.32643,0.09434 0.16921,0 0.3459,-0.04941 0.17819,-0.05091 0.36537,-0.152735 v 0.413282 q -0.19017,0.07187 -0.38034,0.107813 -0.19017,0.03743 -0.38034,0.03743 -0.45521,0 -0.70827,-0.2306 -0.25156,-0.232096 -0.25156,-0.64987 0,-0.410287 0.24707,-0.645378 0.24857,-0.235092 0.68281,-0.235092 0.39532,0 0.6319,0.238086 0.23809,0.238087 0.23809,0.636394 z m -0.55104,-0.17819 q 0,-0.152735 -0.0898,-0.245573 -0.0883,-0.09434 -0.23209,-0.09434 -0.15573,0 -0.25306,0.08835 -0.0973,0.08685 -0.12129,0.251563 z m 1.84928,0.675326 q 0.17221,0 0.26205,-0.125781 0.0913,-0.125782 0.0913,-0.365365 0,-0.239584 -0.0913,-0.365365 -0.0898,-0.125782 -0.26205,-0.125782 -0.1722,0 -0.26503,0.127279 -0.0914,0.125782 -0.0914,0.363868 0,0.238086 0.0914,0.365365 0.0928,0.125781 0.26503,0.125781 z m -0.35638,-1.085613 q 0.11081,-0.146745 0.24558,-0.215625 0.13476,-0.07038 0.30996,-0.07038 0.30996,0 0.50910997,0.24707 0.19916,0.245574 0.19916,0.6334 0,0.387826 -0.19916,0.634896 -0.19914997,0.245573 -0.50910997,0.245573 -0.1752,0 -0.30996,-0.06888 -0.13477,-0.07038 -0.24558,-0.217122 v 0.242578 h -0.53606 v -2.32995 h 0.53606 z"
|
||||
id="text2-6-9" aria-label="Web" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</template>
|
@@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
export DOMAIN="docker-web.com"
|
||||
export PORT="7755"
|
||||
export REDIRECTIONS="get.$DOMAIN->https://raw.githubusercontent.com/docker-web/docker-web/master/install.sh"
|
||||
export REPO_NAME="docker-website"
|
||||
export DOMAIN="docker-web.valere.dev"
|
||||
export PORT="7900"
|
||||
export PORT_EXPOSED="3000"
|
||||
export REDIRECTIONS="getdweb.valere.dev->https://raw.githubusercontent.com/docker-web/docker-web/master/install.sh"
|
||||
|
@@ -1,16 +1,23 @@
|
||||
services:
|
||||
dockerwebcom:
|
||||
build: .
|
||||
container_name: dockerwebcom
|
||||
dockerwebsite:
|
||||
image: local/dockerwebsite
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: dockerwebsite
|
||||
restart: unless-stopped
|
||||
working_dir: /app
|
||||
ports:
|
||||
- $PORT:3000
|
||||
- "${PORT}:${PORT_EXPOSED}"
|
||||
volumes:
|
||||
- "${MEDIA_DIR}:/mnt/media"
|
||||
environment:
|
||||
VIRTUAL_HOST: '${DOMAIN}'
|
||||
LETSENCRYPT_HOST: '${DOMAIN}'
|
||||
PUID: '${PUID}'
|
||||
PGID: '${PGID}'
|
||||
VIRTUAL_HOST: "${DOMAIN}"
|
||||
LETSENCRYPT_HOST: "${DOMAIN}"
|
||||
PUID: "${PUID}"
|
||||
PGID: "${PGID}"
|
||||
|
||||
networks:
|
||||
default:
|
||||
name: dockerweb
|
||||
external: true
|
||||
|
6
env.d.ts
vendored
@@ -1,6 +0,0 @@
|
||||
// for svgo
|
||||
declare module '*.svg' {
|
||||
import type { DefineComponent } from 'vue'
|
||||
const component: DefineComponent
|
||||
export default component
|
||||
}
|
6
eslint.config.mjs
Normal file
@@ -0,0 +1,6 @@
|
||||
// @ts-check
|
||||
import withNuxt from './.nuxt/eslint.config.mjs'
|
||||
|
||||
export default withNuxt(
|
||||
// Your custom configs here
|
||||
)
|
10
eslintignore
@@ -1,10 +0,0 @@
|
||||
dist
|
||||
public
|
||||
|
||||
# ignore generate imports
|
||||
auto-imports.d.ts
|
||||
components.d.ts
|
||||
|
||||
dist
|
||||
.output
|
||||
node_modules
|
13
eslintrc
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"extends": ["@nuxtjs/eslint-config-typescript"],
|
||||
"overrides": [
|
||||
{
|
||||
"files": [
|
||||
"./server/**/*.ts"
|
||||
],
|
||||
"rules": {
|
||||
"no-console": ["error", { "allow": ["info", "warn", "trace", "error"]}]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
BIN
favicon.ico
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 15 KiB |
100
logo.svg
@@ -1,82 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="111.83958mm"
|
||||
height="111.83958mm"
|
||||
viewBox="0 0 111.83957 111.83957"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
sodipodi:docname="logo.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:zoom="1.0293883"
|
||||
inkscape:cx="230.71954"
|
||||
inkscape:cy="183.11846"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs1" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-49.080209,-92.580211)">
|
||||
<g
|
||||
id="g2"
|
||||
transform="matrix(5.5108247,0,0,5.5108247,118.69148,125.59682)"
|
||||
style="display:inline;fill:#ffffff">
|
||||
<g
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602"
|
||||
transform="matrix(0.61412638,0,0,0.61412638,-46.767414,1.3479387)"
|
||||
id="g1236-3-3-2">
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:302.362;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-2-6-6-9"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="9.6730785" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:428.643;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-9-7-7-1"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="13.713011" />
|
||||
<circle
|
||||
style="display:inline;fill:#0062f8;fill-opacity:0.446602;stroke:none;stroke-width:516.481;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:161.197;stroke-opacity:1"
|
||||
id="path1180-1-5-5-27"
|
||||
cx="72.107216"
|
||||
cy="4.5725055"
|
||||
r="16.523087" />
|
||||
<svg class="MuiBox-root css-15p9n5u" fill="#ffffff" data-darkreader-inline-fill="" version="1.1"
|
||||
viewBox="0 0 195 194.57" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<g transform="translate(16.659 8.322)">
|
||||
<g transform="matrix(5.8877 0 0 5.8877 -343.49 62.039)" fill="#0062f8" fill-opacity=".4466">
|
||||
<circle cx="72.107" cy="4.5725" r="9.6731" />
|
||||
<circle cx="72.107" cy="4.5725" r="13.713" />
|
||||
<circle cx="72.107" cy="4.5725" r="16.523" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#ffffff;stroke-width:0.433462"
|
||||
id="path881-7-5-5-0"
|
||||
d="m 3.9199448,3.7220977 c -0.0282,-0.02295 -0.29172,-0.221932 -0.84699,-0.221932 -0.13871,0 -0.28565,0.013 -0.4378,0.0377 -0.10749,-0.738187 -0.71564,-1.097959 -0.74382,-1.113996 l -0.14954,-0.08669 -0.0984,0.142176 c -0.12298,0.190471 -0.21255,0.400537 -0.26484,0.621149 -0.0997,0.421326 -0.039,0.816643 0.17468,1.155612 -0.25834,0.143476 -0.67013003,0.181186 -0.75596003,0.182051 H -6.0544552 c -0.17908,7.09e-4 -0.32415,0.145584 -0.3251,0.324667 0.12299,0.569402 0.12059,0.553034 0.31955,1.075789 0.23623,0.619849 0.58734,1.076285 1.04421,1.356736 0.51191,0.31426 1.34546,0.494146 2.28694,0.494146 0.4404,0 0.87993,-0.03991 1.27004,-0.115302 0.61422,-0.118332 1.17252,-0.321625 1.65843,-0.602942 0.42468,-0.246154 0.80673,-0.559405 1.13134,-0.927608 0.54269,-0.615519 0.68368,-0.724924 1.08704,-1.222306 0.0325,0.0015 0.0641,0.002 0.0958,0.002 0.59428,0 0.96012,-0.238404 1.16168,-0.437793 0.2189,-0.216731 0.29692,-0.432597 0.30516,-0.456436 l 0.0421,-0.124838 z"
|
||||
sodipodi:nodetypes="cscccccccccccsccccscccc" />
|
||||
<path
|
||||
style="font-weight:bold;font-size:3.06667px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';letter-spacing:0px;display:inline;fill:#ffffff;stroke-width:1.51181"
|
||||
d="m -6.3933452,1.1512817 h 0.55254 l 0.38633,1.624676 0.38333,-1.624676 h 0.55553 l 0.38334,1.624676 0.38633,-1.624676 h 0.54804 l -0.52708,2.235614 h -0.66484 l -0.4058,-1.699546 -0.4013,1.699546 h -0.66485 z m 5.11361,1.392579 v 0.152735 h -1.25332 q 0.0195,0.188672 0.13626,0.283008 0.1168,0.09434 0.32643,0.09434 0.16921,0 0.3459,-0.04941 0.17819,-0.05091 0.36537,-0.152735 v 0.413282 q -0.19017,0.07187 -0.38034,0.107813 -0.19017,0.03743 -0.38034,0.03743 -0.45521,0 -0.70827,-0.2306 -0.25156,-0.232096 -0.25156,-0.64987 0,-0.410287 0.24707,-0.645378 0.24857,-0.235092 0.68281,-0.235092 0.39532,0 0.6319,0.238086 0.23809,0.238087 0.23809,0.636394 z m -0.55104,-0.17819 q 0,-0.152735 -0.0898,-0.245573 -0.0883,-0.09434 -0.23209,-0.09434 -0.15573,0 -0.25306,0.08835 -0.0973,0.08685 -0.12129,0.251563 z m 1.84928,0.675326 q 0.17221,0 0.26205,-0.125781 0.0913,-0.125782 0.0913,-0.365365 0,-0.239584 -0.0913,-0.365365 -0.0898,-0.125782 -0.26205,-0.125782 -0.1722,0 -0.26503,0.127279 -0.0914,0.125782 -0.0914,0.363868 0,0.238086 0.0914,0.365365 0.0928,0.125781 0.26503,0.125781 z m -0.35638,-1.085613 q 0.11081,-0.146745 0.24558,-0.215625 0.13476,-0.07038 0.30996,-0.07038 0.30996,0 0.50910997,0.24707 0.19916,0.245574 0.19916,0.6334 0,0.387826 -0.19916,0.634896 -0.19914997,0.245573 -0.50910997,0.245573 -0.1752,0 -0.30996,-0.06888 -0.13477,-0.07038 -0.24558,-0.217122 v 0.242578 h -0.53606 v -2.32995 h 0.53606 z"
|
||||
id="text2-6-9"
|
||||
aria-label="Web" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<g fill="#fff">
|
||||
<path
|
||||
d="m81.055 55.167a26.753 26.753 0 0 0-26.758 26.758 26.753 26.753 0 0 0 0.35578 4.3254h52.804a26.753 26.753 0 0 0 0.35578-4.3254 26.753 26.753 0 0 0-26.758-26.758z"
|
||||
stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2.3" stroke-width="355.55"
|
||||
style="paint-order:fill markers stroke" />
|
||||
<path
|
||||
d="m142.46 84.801c-0.27036-0.22002-2.7968-2.1277-8.1202-2.1277-1.3298 0-2.7386 0.12463-4.1972 0.36143-1.0305-7.0771-6.8609-10.526-7.1311-10.68l-1.4337-0.8311-0.94337 1.3631c-1.179 1.8261-2.0377 3.84-2.539 5.955-0.95583 4.0393-0.3739 7.8292 1.6747 11.079-2.4767 1.3755-6.4246 1.737-7.2475 1.7453h-65.688c-1.7169 0.0068-3.1077 1.3957-3.1168 3.1126 1.1791 5.4589 1.1561 5.302 3.0636 10.314 2.2648 5.9426 5.6309 10.318 10.011 13.007 4.9077 3.0128 12.899 4.7374 21.925 4.7374 4.2222 0 8.436-0.38262 12.176-1.1054 5.8886-1.1345 11.241-3.0834 15.9-5.7805 4.0714-2.3599 7.7342-5.3631 10.846-8.8931 5.2028-5.901 6.5545-6.9499 10.422-11.718 0.31158 0.01438 0.61453 0.01917 0.91844 0.01917 5.6974 0 9.2048-2.2856 11.137-4.1972 2.0986-2.0778 2.8466-4.1473 2.9256-4.3759l0.40362-1.1968z"
|
||||
stroke-width="4.1556" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 1.8 KiB |
@@ -1,33 +1,17 @@
|
||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
runtimeConfig: {
|
||||
version: '0.0.1'
|
||||
},
|
||||
modules: ['@nuxtjs/tailwindcss', 'nuxt-svgo', '@huntersofbook/naive-ui-nuxt',
|
||||
[
|
||||
'@pinia/nuxt',
|
||||
{
|
||||
autoImports: [
|
||||
// automatically imports `defineStore`
|
||||
'defineStore', // import { defineStore } from 'pinia'
|
||||
// automatically imports `defineStore` as `definePiniaStore`
|
||||
['defineStore', 'definePiniaStore'] // import { defineStore as definePiniaStore } from 'pinia'
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
extends: ['@sidebase/core'],
|
||||
typescript: {
|
||||
shim: false
|
||||
},
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: true },
|
||||
modules: ['@nuxt/eslint', '@nuxtjs/tailwindcss'],
|
||||
app: {
|
||||
head: {
|
||||
script: [
|
||||
{
|
||||
src: "https://umami.erudi.fr/script.js",
|
||||
src: 'https://umami.erudi.fr/script.js',
|
||||
defer: true,
|
||||
"data-website-id": "93b97d68-8f3c-476a-888f-13876e73de1f",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
})
|
||||
'data-website-id': 'b685157f-81fc-4b68-8bf1-81efde4b9e9f'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|
21666
package-lock.json
generated
57
package.json
@@ -1,51 +1,24 @@
|
||||
{
|
||||
"name": "nuxt-app",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"overrides": {
|
||||
"vue": "latest"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "nuxt dev",
|
||||
"build": "nuxt build",
|
||||
"start": "NODE_ENV=production node .output/server/index.mjs",
|
||||
"lint": "eslint .",
|
||||
"test": "TZ=UTC vitest --run",
|
||||
"test:components": "TZ=UTC vitest --run components/",
|
||||
"test:watch": "TZ=UTC vitest",
|
||||
"test:ui": "TZ=UTC vitest --ui --open",
|
||||
"postinstall": "nuxt prepare",
|
||||
"dev": "nuxt dev",
|
||||
"generate": "nuxt generate",
|
||||
"preview": "nuxt preview",
|
||||
"typecheck": "nuxt typecheck"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@faker-js/faker": "^7.6.0",
|
||||
"@huntersofbook/naive-ui-nuxt": "^0.5.1",
|
||||
"@nuxt/test-utils": "^3.0.0",
|
||||
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
||||
"@nuxtjs/tailwindcss": "^6.2.0",
|
||||
"@testing-library/vue": "^6.6.1",
|
||||
"@vitejs/plugin-vue": "^3.2.0",
|
||||
"@vitest/coverage-c8": "^0.26.0",
|
||||
"@vitest/ui": "^0.26.1",
|
||||
"dayjs": "^1.11.7",
|
||||
"eslint": "^8.31.0",
|
||||
"h3": "^1.0.2",
|
||||
"jsdom": "^21.0.0",
|
||||
"nuxt": "3.0.0",
|
||||
"nuxt-svgo": "^1.1.0",
|
||||
"playwright": "^1.29.2",
|
||||
"typescript": "^4.9.4",
|
||||
"unplugin-auto-import": "^0.12.1",
|
||||
"unplugin-vue-components": "^0.22.12",
|
||||
"uuid": "^9.0.0",
|
||||
"vite-svg-loader": "^3.6.0",
|
||||
"vitest": "^0.26.1",
|
||||
"vue-tsc": "^1.0.16"
|
||||
"postinstall": "nuxt prepare"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pinia/nuxt": "^0.4.6",
|
||||
"@sidebase/core": "^0.1.4",
|
||||
"pinia": "^2.0.30",
|
||||
"youtubei": "^1.1.2"
|
||||
}
|
||||
"@nuxt/eslint": "1.9.0",
|
||||
"@nuxtjs/tailwindcss": "6.14.0",
|
||||
"eslint": "^9.33.0",
|
||||
"nuxt": "^4.0.3",
|
||||
"vue": "^3.5.18",
|
||||
"vue-router": "^4.5.1"
|
||||
},
|
||||
"engines": {
|
||||
"pnpm": ">=10 <11"
|
||||
},
|
||||
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
||||
}
|
||||
|
10186
pnpm-lock.yaml
generated
Normal file
BIN
public/favicon.ico
Normal file
After Width: | Height: | Size: 4.2 KiB |
2
public/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
User-Agent: *
|
||||
Disallow:
|
@@ -1,4 +1,18 @@
|
||||
{
|
||||
// https://nuxt.com/docs/guide/concepts/typescript
|
||||
"extends": "./.nuxt/tsconfig.json"
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.server.json"
|
||||
},
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.shared.json"
|
||||
},
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.node.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@@ -1,49 +0,0 @@
|
||||
import path from 'path'
|
||||
import { defineConfig } from 'vitest/config'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import svgLoader from 'vite-svg-loader'
|
||||
import Components from 'unplugin-vue-components/vite'
|
||||
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
||||
import AutoImport from 'unplugin-auto-import/vite'
|
||||
const include = [/\.vue$/, /\.vue\?vue/, /\.stories\.ts$/, /\.[tj]s$/]
|
||||
|
||||
export default defineConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'~': path.resolve(__dirname)
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
vue(),
|
||||
Components({
|
||||
dirs: ['~/components'],
|
||||
directoryAsNamespace: true,
|
||||
resolvers: [NaiveUiResolver()],
|
||||
include
|
||||
}),
|
||||
AutoImport({
|
||||
include,
|
||||
imports: ['vue', '@vueuse/head'],
|
||||
dirs: ['~/composables'],
|
||||
vueTemplate: true
|
||||
}),
|
||||
svgLoader()
|
||||
],
|
||||
test: {
|
||||
globalSetup: ['./tests/setupSqliteDbEnv'],
|
||||
globals: true,
|
||||
environment: 'jsdom',
|
||||
threads: false,
|
||||
coverage: {
|
||||
enabled: true,
|
||||
// We want to catch all js/ts/... files, not only the ones imported in some tests
|
||||
// see https://github.com/bcoe/c8#checking-for-full-source-coverage-using---all
|
||||
all: true,
|
||||
include: [
|
||||
// Nuxt 3 framework folders and files sources from directory structure here: https://nuxt.com/docs/guide/directory-structure/nuxt
|
||||
'components',
|
||||
'composables'
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|