diff --git a/README.md b/README.md index 1b3db76..cfeda49 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ This repository contains examples of how to deploy applications using Dokploy. - [x] Vite - [x] VueJS - [x] AstroJS +- [x] Astro SSR - [x] Go Fiber + --- diff --git a/astro-simple/.gitignore b/astro/.gitignore similarity index 100% rename from astro-simple/.gitignore rename to astro/.gitignore diff --git a/astro-simple/README.md b/astro/README.md similarity index 95% rename from astro-simple/README.md rename to astro/README.md index 1637335..fda81a3 100644 --- a/astro-simple/README.md +++ b/astro/README.md @@ -6,7 +6,7 @@ This repository contains an example of AstroJS application that is deployed on D 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/astro-simple` + - Build path: `/astro` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/astro-simple/astro.config.mjs b/astro/astro.config.mjs similarity index 100% rename from astro-simple/astro.config.mjs rename to astro/astro.config.mjs diff --git a/astro-simple/package.json b/astro/package.json similarity index 100% rename from astro-simple/package.json rename to astro/package.json diff --git a/astro-simple/pnpm-lock.yaml b/astro/pnpm-lock.yaml similarity index 100% rename from astro-simple/pnpm-lock.yaml rename to astro/pnpm-lock.yaml diff --git a/astro-simple/public/blog-placeholder-1.jpg b/astro/public/blog-placeholder-1.jpg similarity index 100% rename from astro-simple/public/blog-placeholder-1.jpg rename to astro/public/blog-placeholder-1.jpg diff --git a/astro-simple/public/blog-placeholder-2.jpg b/astro/public/blog-placeholder-2.jpg similarity index 100% rename from astro-simple/public/blog-placeholder-2.jpg rename to astro/public/blog-placeholder-2.jpg diff --git a/astro-simple/public/blog-placeholder-3.jpg b/astro/public/blog-placeholder-3.jpg similarity index 100% rename from astro-simple/public/blog-placeholder-3.jpg rename to astro/public/blog-placeholder-3.jpg diff --git a/astro-simple/public/blog-placeholder-4.jpg b/astro/public/blog-placeholder-4.jpg similarity index 100% rename from astro-simple/public/blog-placeholder-4.jpg rename to astro/public/blog-placeholder-4.jpg diff --git a/astro-simple/public/blog-placeholder-5.jpg b/astro/public/blog-placeholder-5.jpg similarity index 100% rename from astro-simple/public/blog-placeholder-5.jpg rename to astro/public/blog-placeholder-5.jpg diff --git a/astro-simple/public/blog-placeholder-about.jpg b/astro/public/blog-placeholder-about.jpg similarity index 100% rename from astro-simple/public/blog-placeholder-about.jpg rename to astro/public/blog-placeholder-about.jpg diff --git a/astro-simple/public/favicon.svg b/astro/public/favicon.svg similarity index 100% rename from astro-simple/public/favicon.svg rename to astro/public/favicon.svg diff --git a/astro-simple/public/fonts/atkinson-bold.woff b/astro/public/fonts/atkinson-bold.woff similarity index 100% rename from astro-simple/public/fonts/atkinson-bold.woff rename to astro/public/fonts/atkinson-bold.woff diff --git a/astro-simple/public/fonts/atkinson-regular.woff b/astro/public/fonts/atkinson-regular.woff similarity index 100% rename from astro-simple/public/fonts/atkinson-regular.woff rename to astro/public/fonts/atkinson-regular.woff diff --git a/astro-simple/src/components/BaseHead.astro b/astro/src/components/BaseHead.astro similarity index 100% rename from astro-simple/src/components/BaseHead.astro rename to astro/src/components/BaseHead.astro diff --git a/astro-simple/src/components/Footer.astro b/astro/src/components/Footer.astro similarity index 100% rename from astro-simple/src/components/Footer.astro rename to astro/src/components/Footer.astro diff --git a/astro-simple/src/components/FormattedDate.astro b/astro/src/components/FormattedDate.astro similarity index 100% rename from astro-simple/src/components/FormattedDate.astro rename to astro/src/components/FormattedDate.astro diff --git a/astro-simple/src/components/Header.astro b/astro/src/components/Header.astro similarity index 100% rename from astro-simple/src/components/Header.astro rename to astro/src/components/Header.astro diff --git a/astro-simple/src/components/HeaderLink.astro b/astro/src/components/HeaderLink.astro similarity index 100% rename from astro-simple/src/components/HeaderLink.astro rename to astro/src/components/HeaderLink.astro diff --git a/astro-simple/src/consts.ts b/astro/src/consts.ts similarity index 100% rename from astro-simple/src/consts.ts rename to astro/src/consts.ts diff --git a/astro-simple/src/content/blog/first-post.md b/astro/src/content/blog/first-post.md similarity index 100% rename from astro-simple/src/content/blog/first-post.md rename to astro/src/content/blog/first-post.md diff --git a/astro-simple/src/content/blog/markdown-style-guide.md b/astro/src/content/blog/markdown-style-guide.md similarity index 100% rename from astro-simple/src/content/blog/markdown-style-guide.md rename to astro/src/content/blog/markdown-style-guide.md diff --git a/astro-simple/src/content/blog/second-post.md b/astro/src/content/blog/second-post.md similarity index 100% rename from astro-simple/src/content/blog/second-post.md rename to astro/src/content/blog/second-post.md diff --git a/astro-simple/src/content/blog/third-post.md b/astro/src/content/blog/third-post.md similarity index 100% rename from astro-simple/src/content/blog/third-post.md rename to astro/src/content/blog/third-post.md diff --git a/astro-simple/src/content/blog/using-mdx.mdx b/astro/src/content/blog/using-mdx.mdx similarity index 100% rename from astro-simple/src/content/blog/using-mdx.mdx rename to astro/src/content/blog/using-mdx.mdx diff --git a/astro-simple/src/content/config.ts b/astro/src/content/config.ts similarity index 100% rename from astro-simple/src/content/config.ts rename to astro/src/content/config.ts diff --git a/astro-simple/src/env.d.ts b/astro/src/env.d.ts similarity index 100% rename from astro-simple/src/env.d.ts rename to astro/src/env.d.ts diff --git a/astro-simple/src/layouts/BlogPost.astro b/astro/src/layouts/BlogPost.astro similarity index 100% rename from astro-simple/src/layouts/BlogPost.astro rename to astro/src/layouts/BlogPost.astro diff --git a/astro-simple/src/pages/about.astro b/astro/src/pages/about.astro similarity index 100% rename from astro-simple/src/pages/about.astro rename to astro/src/pages/about.astro diff --git a/astro-simple/src/pages/blog/[...slug].astro b/astro/src/pages/blog/[...slug].astro similarity index 100% rename from astro-simple/src/pages/blog/[...slug].astro rename to astro/src/pages/blog/[...slug].astro diff --git a/astro-simple/src/pages/blog/index.astro b/astro/src/pages/blog/index.astro similarity index 100% rename from astro-simple/src/pages/blog/index.astro rename to astro/src/pages/blog/index.astro diff --git a/astro-simple/src/pages/index.astro b/astro/src/pages/index.astro similarity index 100% rename from astro-simple/src/pages/index.astro rename to astro/src/pages/index.astro diff --git a/astro-simple/src/pages/rss.xml.js b/astro/src/pages/rss.xml.js similarity index 100% rename from astro-simple/src/pages/rss.xml.js rename to astro/src/pages/rss.xml.js diff --git a/astro-simple/src/styles/global.css b/astro/src/styles/global.css similarity index 100% rename from astro-simple/src/styles/global.css rename to astro/src/styles/global.css diff --git a/astro-simple/tsconfig.json b/astro/tsconfig.json similarity index 100% rename from astro-simple/tsconfig.json rename to astro/tsconfig.json diff --git a/go-fiber-simple/.gitignore b/go-fiber/.gitignore similarity index 100% rename from go-fiber-simple/.gitignore rename to go-fiber/.gitignore diff --git a/go-fiber-simple/README.md b/go-fiber/README.md similarity index 94% rename from go-fiber-simple/README.md rename to go-fiber/README.md index efd4c9d..ef68a18 100644 --- a/go-fiber-simple/README.md +++ b/go-fiber/README.md @@ -6,7 +6,7 @@ This repository contains an example of Go fiber application that is deployed on 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/go-fiber-simple` + - Build path: `/go-fiber` 4. **Click on Deploy**: - Deploy your application by clicking the deploy button. diff --git a/go-fiber-simple/go.mod b/go-fiber/go.mod similarity index 100% rename from go-fiber-simple/go.mod rename to go-fiber/go.mod diff --git a/go-fiber-simple/go.sum b/go-fiber/go.sum similarity index 100% rename from go-fiber-simple/go.sum rename to go-fiber/go.sum diff --git a/go-fiber-simple/main.go b/go-fiber/main.go similarity index 100% rename from go-fiber-simple/main.go rename to go-fiber/main.go diff --git a/lit-simple/.gitignore b/lit/.gitignore similarity index 100% rename from lit-simple/.gitignore rename to lit/.gitignore diff --git a/lit-simple/README.md b/lit/README.md similarity index 96% rename from lit-simple/README.md rename to lit/README.md index aa42283..dfb9b04 100644 --- a/lit-simple/README.md +++ b/lit/README.md @@ -6,7 +6,7 @@ This repository contains an example of Lit application that is deployed on Dokpl 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/lit-simple` + - Build path: `/lit` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/lit-simple/index.html b/lit/index.html similarity index 100% rename from lit-simple/index.html rename to lit/index.html diff --git a/lit-simple/package.json b/lit/package.json similarity index 93% rename from lit-simple/package.json rename to lit/package.json index 8a7f9a0..564302c 100644 --- a/lit-simple/package.json +++ b/lit/package.json @@ -1,5 +1,5 @@ { - "name": "lit-simple", + "name": "lit", "private": true, "version": "0.0.0", "type": "module", diff --git a/lit-simple/pnpm-lock.yaml b/lit/pnpm-lock.yaml similarity index 100% rename from lit-simple/pnpm-lock.yaml rename to lit/pnpm-lock.yaml diff --git a/lit-simple/public/vite.svg b/lit/public/vite.svg similarity index 100% rename from lit-simple/public/vite.svg rename to lit/public/vite.svg diff --git a/lit-simple/src/assets/lit.svg b/lit/src/assets/lit.svg similarity index 100% rename from lit-simple/src/assets/lit.svg rename to lit/src/assets/lit.svg diff --git a/lit-simple/src/index.css b/lit/src/index.css similarity index 100% rename from lit-simple/src/index.css rename to lit/src/index.css diff --git a/lit-simple/src/my-element.ts b/lit/src/my-element.ts similarity index 100% rename from lit-simple/src/my-element.ts rename to lit/src/my-element.ts diff --git a/lit-simple/src/vite-env.d.ts b/lit/src/vite-env.d.ts similarity index 100% rename from lit-simple/src/vite-env.d.ts rename to lit/src/vite-env.d.ts diff --git a/lit-simple/tsconfig.json b/lit/tsconfig.json similarity index 100% rename from lit-simple/tsconfig.json rename to lit/tsconfig.json diff --git a/lit-simple/vite.config.ts b/lit/vite.config.ts similarity index 100% rename from lit-simple/vite.config.ts rename to lit/vite.config.ts diff --git a/nextjs-simple/.gitignore b/nextjs/.gitignore similarity index 100% rename from nextjs-simple/.gitignore rename to nextjs/.gitignore diff --git a/nextjs-simple/README.md b/nextjs/README.md similarity index 94% rename from nextjs-simple/README.md rename to nextjs/README.md index 856c516..d933447 100644 --- a/nextjs-simple/README.md +++ b/nextjs/README.md @@ -6,7 +6,7 @@ This repository contains an example of nextjs application that is deployed on Do 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/nextjs-simple` + - Build path: `/nextjs` 4. **Click on Deploy**: - Deploy your application by clicking the deploy button. diff --git a/nextjs-simple/next.config.mjs b/nextjs/next.config.mjs similarity index 100% rename from nextjs-simple/next.config.mjs rename to nextjs/next.config.mjs diff --git a/nextjs-simple/package.json b/nextjs/package.json similarity index 94% rename from nextjs-simple/package.json rename to nextjs/package.json index 0ae55a9..a234fc2 100644 --- a/nextjs-simple/package.json +++ b/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "nextjs-simple", + "name": "nextjs", "version": "0.1.0", "private": true, "scripts": { diff --git a/nextjs-simple/pnpm-lock.yaml b/nextjs/pnpm-lock.yaml similarity index 100% rename from nextjs-simple/pnpm-lock.yaml rename to nextjs/pnpm-lock.yaml diff --git a/nextjs-simple/postcss.config.mjs b/nextjs/postcss.config.mjs similarity index 100% rename from nextjs-simple/postcss.config.mjs rename to nextjs/postcss.config.mjs diff --git a/nextjs-simple/public/next.svg b/nextjs/public/next.svg similarity index 100% rename from nextjs-simple/public/next.svg rename to nextjs/public/next.svg diff --git a/nextjs-simple/public/vercel.svg b/nextjs/public/vercel.svg similarity index 100% rename from nextjs-simple/public/vercel.svg rename to nextjs/public/vercel.svg diff --git a/nextjs-simple/src/app/favicon.ico b/nextjs/src/app/favicon.ico similarity index 100% rename from nextjs-simple/src/app/favicon.ico rename to nextjs/src/app/favicon.ico diff --git a/nextjs-simple/src/app/globals.css b/nextjs/src/app/globals.css similarity index 100% rename from nextjs-simple/src/app/globals.css rename to nextjs/src/app/globals.css diff --git a/nextjs-simple/src/app/layout.tsx b/nextjs/src/app/layout.tsx similarity index 100% rename from nextjs-simple/src/app/layout.tsx rename to nextjs/src/app/layout.tsx diff --git a/nextjs-simple/src/app/page.tsx b/nextjs/src/app/page.tsx similarity index 100% rename from nextjs-simple/src/app/page.tsx rename to nextjs/src/app/page.tsx diff --git a/nextjs-simple/tailwind.config.ts b/nextjs/tailwind.config.ts similarity index 100% rename from nextjs-simple/tailwind.config.ts rename to nextjs/tailwind.config.ts diff --git a/nextjs-simple/tsconfig.json b/nextjs/tsconfig.json similarity index 100% rename from nextjs-simple/tsconfig.json rename to nextjs/tsconfig.json diff --git a/preact-simple/.gitignore b/preact/.gitignore similarity index 100% rename from preact-simple/.gitignore rename to preact/.gitignore diff --git a/preact-simple/README.md b/preact/README.md similarity index 95% rename from preact-simple/README.md rename to preact/README.md index 9418836..af3b5b6 100644 --- a/preact-simple/README.md +++ b/preact/README.md @@ -6,7 +6,7 @@ This repository contains an example of Preact application that is deployed on Do 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/preact-simple` + - Build path: `/preact` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/preact-simple/index.html b/preact/index.html similarity index 100% rename from preact-simple/index.html rename to preact/index.html diff --git a/preact-simple/package.json b/preact/package.json similarity index 92% rename from preact-simple/package.json rename to preact/package.json index ef5d252..9f607b3 100644 --- a/preact-simple/package.json +++ b/preact/package.json @@ -1,5 +1,5 @@ { - "name": "preact-simple", + "name": "preact", "private": true, "version": "0.0.0", "type": "module", diff --git a/preact-simple/pnpm-lock.yaml b/preact/pnpm-lock.yaml similarity index 100% rename from preact-simple/pnpm-lock.yaml rename to preact/pnpm-lock.yaml diff --git a/preact-simple/public/vite.svg b/preact/public/vite.svg similarity index 100% rename from preact-simple/public/vite.svg rename to preact/public/vite.svg diff --git a/preact-simple/src/app.css b/preact/src/app.css similarity index 100% rename from preact-simple/src/app.css rename to preact/src/app.css diff --git a/preact-simple/src/app.tsx b/preact/src/app.tsx similarity index 100% rename from preact-simple/src/app.tsx rename to preact/src/app.tsx diff --git a/preact-simple/src/assets/preact.svg b/preact/src/assets/preact.svg similarity index 100% rename from preact-simple/src/assets/preact.svg rename to preact/src/assets/preact.svg diff --git a/preact-simple/src/index.css b/preact/src/index.css similarity index 100% rename from preact-simple/src/index.css rename to preact/src/index.css diff --git a/preact-simple/src/main.tsx b/preact/src/main.tsx similarity index 100% rename from preact-simple/src/main.tsx rename to preact/src/main.tsx diff --git a/preact-simple/src/vite-env.d.ts b/preact/src/vite-env.d.ts similarity index 100% rename from preact-simple/src/vite-env.d.ts rename to preact/src/vite-env.d.ts diff --git a/preact-simple/tsconfig.app.json b/preact/tsconfig.app.json similarity index 100% rename from preact-simple/tsconfig.app.json rename to preact/tsconfig.app.json diff --git a/preact-simple/tsconfig.json b/preact/tsconfig.json similarity index 100% rename from preact-simple/tsconfig.json rename to preact/tsconfig.json diff --git a/preact-simple/tsconfig.node.json b/preact/tsconfig.node.json similarity index 100% rename from preact-simple/tsconfig.node.json rename to preact/tsconfig.node.json diff --git a/preact-simple/vite.config.ts b/preact/vite.config.ts similarity index 100% rename from preact-simple/vite.config.ts rename to preact/vite.config.ts diff --git a/qwik-simple/.eslintignore b/qwik/.eslintignore similarity index 100% rename from qwik-simple/.eslintignore rename to qwik/.eslintignore diff --git a/qwik-simple/.eslintrc.cjs b/qwik/.eslintrc.cjs similarity index 100% rename from qwik-simple/.eslintrc.cjs rename to qwik/.eslintrc.cjs diff --git a/qwik-simple/.gitignore b/qwik/.gitignore similarity index 100% rename from qwik-simple/.gitignore rename to qwik/.gitignore diff --git a/qwik-simple/.prettierignore b/qwik/.prettierignore similarity index 100% rename from qwik-simple/.prettierignore rename to qwik/.prettierignore diff --git a/qwik-simple/.vscode/launch.json b/qwik/.vscode/launch.json similarity index 100% rename from qwik-simple/.vscode/launch.json rename to qwik/.vscode/launch.json diff --git a/qwik-simple/.vscode/qwik-city.code-snippets b/qwik/.vscode/qwik-city.code-snippets similarity index 100% rename from qwik-simple/.vscode/qwik-city.code-snippets rename to qwik/.vscode/qwik-city.code-snippets diff --git a/qwik-simple/.vscode/qwik.code-snippets b/qwik/.vscode/qwik.code-snippets similarity index 100% rename from qwik-simple/.vscode/qwik.code-snippets rename to qwik/.vscode/qwik.code-snippets diff --git a/qwik-simple/README.md b/qwik/README.md similarity index 95% rename from qwik-simple/README.md rename to qwik/README.md index a59a9d5..11320ee 100644 --- a/qwik-simple/README.md +++ b/qwik/README.md @@ -6,7 +6,7 @@ This repository contains an example of Qwikjs application that is deployed on Do 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/qwik-simple` + - Build path: `/qwik` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/qwik-simple/package.json b/qwik/package.json similarity index 100% rename from qwik-simple/package.json rename to qwik/package.json diff --git a/qwik-simple/pnpm-lock.yaml b/qwik/pnpm-lock.yaml similarity index 100% rename from qwik-simple/pnpm-lock.yaml rename to qwik/pnpm-lock.yaml diff --git a/qwik-simple/public/favicon.svg b/qwik/public/favicon.svg similarity index 100% rename from qwik-simple/public/favicon.svg rename to qwik/public/favicon.svg diff --git a/qwik-simple/public/manifest.json b/qwik/public/manifest.json similarity index 100% rename from qwik-simple/public/manifest.json rename to qwik/public/manifest.json diff --git a/qwik-simple/public/robots.txt b/qwik/public/robots.txt similarity index 100% rename from qwik-simple/public/robots.txt rename to qwik/public/robots.txt diff --git a/qwik-simple/qwik.env.d.ts b/qwik/qwik.env.d.ts similarity index 100% rename from qwik-simple/qwik.env.d.ts rename to qwik/qwik.env.d.ts diff --git a/qwik-simple/src/components/router-head/router-head.tsx b/qwik/src/components/router-head/router-head.tsx similarity index 100% rename from qwik-simple/src/components/router-head/router-head.tsx rename to qwik/src/components/router-head/router-head.tsx diff --git a/qwik-simple/src/entry.dev.tsx b/qwik/src/entry.dev.tsx similarity index 100% rename from qwik-simple/src/entry.dev.tsx rename to qwik/src/entry.dev.tsx diff --git a/qwik-simple/src/entry.preview.tsx b/qwik/src/entry.preview.tsx similarity index 100% rename from qwik-simple/src/entry.preview.tsx rename to qwik/src/entry.preview.tsx diff --git a/qwik-simple/src/entry.ssr.tsx b/qwik/src/entry.ssr.tsx similarity index 100% rename from qwik-simple/src/entry.ssr.tsx rename to qwik/src/entry.ssr.tsx diff --git a/qwik-simple/src/global.css b/qwik/src/global.css similarity index 100% rename from qwik-simple/src/global.css rename to qwik/src/global.css diff --git a/qwik-simple/src/root.tsx b/qwik/src/root.tsx similarity index 100% rename from qwik-simple/src/root.tsx rename to qwik/src/root.tsx diff --git a/qwik-simple/src/routes/index.tsx b/qwik/src/routes/index.tsx similarity index 100% rename from qwik-simple/src/routes/index.tsx rename to qwik/src/routes/index.tsx diff --git a/qwik-simple/src/routes/layout.tsx b/qwik/src/routes/layout.tsx similarity index 100% rename from qwik-simple/src/routes/layout.tsx rename to qwik/src/routes/layout.tsx diff --git a/qwik-simple/src/routes/service-worker.ts b/qwik/src/routes/service-worker.ts similarity index 100% rename from qwik-simple/src/routes/service-worker.ts rename to qwik/src/routes/service-worker.ts diff --git a/qwik-simple/tsconfig.json b/qwik/tsconfig.json similarity index 100% rename from qwik-simple/tsconfig.json rename to qwik/tsconfig.json diff --git a/qwik-simple/vite.config.ts b/qwik/vite.config.ts similarity index 100% rename from qwik-simple/vite.config.ts rename to qwik/vite.config.ts diff --git a/remix-simple/.eslintrc.cjs b/remix/.eslintrc.cjs similarity index 100% rename from remix-simple/.eslintrc.cjs rename to remix/.eslintrc.cjs diff --git a/remix-simple/.gitignore b/remix/.gitignore similarity index 100% rename from remix-simple/.gitignore rename to remix/.gitignore diff --git a/remix-simple/README.md b/remix/README.md similarity index 94% rename from remix-simple/README.md rename to remix/README.md index 516a221..48b961c 100644 --- a/remix-simple/README.md +++ b/remix/README.md @@ -6,7 +6,7 @@ This repository contains an example of remix application that is deployed on Dok 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/remix-simple` + - Build path: `/remix` 2. **Click on Deploy**: - Deploy your application by clicking the deploy button. diff --git a/remix-simple/app/entry.client.tsx b/remix/app/entry.client.tsx similarity index 100% rename from remix-simple/app/entry.client.tsx rename to remix/app/entry.client.tsx diff --git a/remix-simple/app/entry.server.tsx b/remix/app/entry.server.tsx similarity index 100% rename from remix-simple/app/entry.server.tsx rename to remix/app/entry.server.tsx diff --git a/remix-simple/app/root.tsx b/remix/app/root.tsx similarity index 100% rename from remix-simple/app/root.tsx rename to remix/app/root.tsx diff --git a/remix-simple/app/routes/_index.tsx b/remix/app/routes/_index.tsx similarity index 100% rename from remix-simple/app/routes/_index.tsx rename to remix/app/routes/_index.tsx diff --git a/remix-simple/app/tailwind.css b/remix/app/tailwind.css similarity index 100% rename from remix-simple/app/tailwind.css rename to remix/app/tailwind.css diff --git a/remix-simple/package.json b/remix/package.json similarity index 97% rename from remix-simple/package.json rename to remix/package.json index 8b0dc70..3ad289c 100644 --- a/remix-simple/package.json +++ b/remix/package.json @@ -1,5 +1,5 @@ { - "name": "remix-simple", + "name": "remix", "private": true, "sideEffects": false, "type": "module", diff --git a/remix-simple/pnpm-lock.yaml b/remix/pnpm-lock.yaml similarity index 100% rename from remix-simple/pnpm-lock.yaml rename to remix/pnpm-lock.yaml diff --git a/remix-simple/postcss.config.js b/remix/postcss.config.js similarity index 100% rename from remix-simple/postcss.config.js rename to remix/postcss.config.js diff --git a/remix-simple/public/favicon.ico b/remix/public/favicon.ico similarity index 100% rename from remix-simple/public/favicon.ico rename to remix/public/favicon.ico diff --git a/remix-simple/tailwind.config.ts b/remix/tailwind.config.ts similarity index 100% rename from remix-simple/tailwind.config.ts rename to remix/tailwind.config.ts diff --git a/remix-simple/tsconfig.json b/remix/tsconfig.json similarity index 100% rename from remix-simple/tsconfig.json rename to remix/tsconfig.json diff --git a/remix-simple/vite.config.ts b/remix/vite.config.ts similarity index 100% rename from remix-simple/vite.config.ts rename to remix/vite.config.ts diff --git a/solidjs-simple/.gitignore b/solidjs/.gitignore similarity index 100% rename from solidjs-simple/.gitignore rename to solidjs/.gitignore diff --git a/solidjs-simple/README.md b/solidjs/README.md similarity index 95% rename from solidjs-simple/README.md rename to solidjs/README.md index 6b96b63..c6a6afa 100644 --- a/solidjs-simple/README.md +++ b/solidjs/README.md @@ -6,7 +6,7 @@ This repository contains an example of Solidjs application that is deployed on D 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/solidjs-simple` + - Build path: `/solidjs` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/solidjs-simple/index.html b/solidjs/index.html similarity index 100% rename from solidjs-simple/index.html rename to solidjs/index.html diff --git a/solidjs-simple/package.json b/solidjs/package.json similarity index 100% rename from solidjs-simple/package.json rename to solidjs/package.json diff --git a/solidjs-simple/pnpm-lock.yaml b/solidjs/pnpm-lock.yaml similarity index 100% rename from solidjs-simple/pnpm-lock.yaml rename to solidjs/pnpm-lock.yaml diff --git a/solidjs-simple/src/App.module.css b/solidjs/src/App.module.css similarity index 100% rename from solidjs-simple/src/App.module.css rename to solidjs/src/App.module.css diff --git a/solidjs-simple/src/App.tsx b/solidjs/src/App.tsx similarity index 100% rename from solidjs-simple/src/App.tsx rename to solidjs/src/App.tsx diff --git a/solidjs-simple/src/assets/favicon.ico b/solidjs/src/assets/favicon.ico similarity index 100% rename from solidjs-simple/src/assets/favicon.ico rename to solidjs/src/assets/favicon.ico diff --git a/solidjs-simple/src/index.css b/solidjs/src/index.css similarity index 100% rename from solidjs-simple/src/index.css rename to solidjs/src/index.css diff --git a/solidjs-simple/src/index.tsx b/solidjs/src/index.tsx similarity index 100% rename from solidjs-simple/src/index.tsx rename to solidjs/src/index.tsx diff --git a/solidjs-simple/src/logo.svg b/solidjs/src/logo.svg similarity index 100% rename from solidjs-simple/src/logo.svg rename to solidjs/src/logo.svg diff --git a/solidjs-simple/tsconfig.json b/solidjs/tsconfig.json similarity index 100% rename from solidjs-simple/tsconfig.json rename to solidjs/tsconfig.json diff --git a/solidjs-simple/vite.config.ts b/solidjs/vite.config.ts similarity index 100% rename from solidjs-simple/vite.config.ts rename to solidjs/vite.config.ts diff --git a/svelte-simple/.gitignore b/svelte/.gitignore similarity index 100% rename from svelte-simple/.gitignore rename to svelte/.gitignore diff --git a/svelte-simple/.vscode/extensions.json b/svelte/.vscode/extensions.json similarity index 100% rename from svelte-simple/.vscode/extensions.json rename to svelte/.vscode/extensions.json diff --git a/svelte-simple/README.md b/svelte/README.md similarity index 95% rename from svelte-simple/README.md rename to svelte/README.md index 14dec3b..6bbd7fd 100644 --- a/svelte-simple/README.md +++ b/svelte/README.md @@ -6,7 +6,7 @@ This repository contains an example of Svelte application that is deployed on Do 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/svelte-simple` + - Build path: `/svelte` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/svelte-simple/index.html b/svelte/index.html similarity index 100% rename from svelte-simple/index.html rename to svelte/index.html diff --git a/svelte-simple/package.json b/svelte/package.json similarity index 94% rename from svelte-simple/package.json rename to svelte/package.json index 096441f..9904432 100644 --- a/svelte-simple/package.json +++ b/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "svelte-simple", + "name": "svelte", "private": true, "version": "0.0.0", "type": "module", diff --git a/svelte-simple/pnpm-lock.yaml b/svelte/pnpm-lock.yaml similarity index 100% rename from svelte-simple/pnpm-lock.yaml rename to svelte/pnpm-lock.yaml diff --git a/svelte-simple/public/vite.svg b/svelte/public/vite.svg similarity index 100% rename from svelte-simple/public/vite.svg rename to svelte/public/vite.svg diff --git a/svelte-simple/src/App.svelte b/svelte/src/App.svelte similarity index 100% rename from svelte-simple/src/App.svelte rename to svelte/src/App.svelte diff --git a/svelte-simple/src/app.css b/svelte/src/app.css similarity index 100% rename from svelte-simple/src/app.css rename to svelte/src/app.css diff --git a/svelte-simple/src/assets/svelte.svg b/svelte/src/assets/svelte.svg similarity index 100% rename from svelte-simple/src/assets/svelte.svg rename to svelte/src/assets/svelte.svg diff --git a/svelte-simple/src/lib/Counter.svelte b/svelte/src/lib/Counter.svelte similarity index 100% rename from svelte-simple/src/lib/Counter.svelte rename to svelte/src/lib/Counter.svelte diff --git a/svelte-simple/src/main.ts b/svelte/src/main.ts similarity index 100% rename from svelte-simple/src/main.ts rename to svelte/src/main.ts diff --git a/svelte-simple/src/vite-env.d.ts b/svelte/src/vite-env.d.ts similarity index 100% rename from svelte-simple/src/vite-env.d.ts rename to svelte/src/vite-env.d.ts diff --git a/svelte-simple/svelte.config.js b/svelte/svelte.config.js similarity index 100% rename from svelte-simple/svelte.config.js rename to svelte/svelte.config.js diff --git a/svelte-simple/tsconfig.json b/svelte/tsconfig.json similarity index 100% rename from svelte-simple/tsconfig.json rename to svelte/tsconfig.json diff --git a/svelte-simple/tsconfig.node.json b/svelte/tsconfig.node.json similarity index 100% rename from svelte-simple/tsconfig.node.json rename to svelte/tsconfig.node.json diff --git a/svelte-simple/vite.config.ts b/svelte/vite.config.ts similarity index 100% rename from svelte-simple/vite.config.ts rename to svelte/vite.config.ts diff --git a/vite-simple/.eslintrc.cjs b/vite/.eslintrc.cjs similarity index 100% rename from vite-simple/.eslintrc.cjs rename to vite/.eslintrc.cjs diff --git a/vite-simple/.gitignore b/vite/.gitignore similarity index 100% rename from vite-simple/.gitignore rename to vite/.gitignore diff --git a/vite-simple/README.md b/vite/README.md similarity index 95% rename from vite-simple/README.md rename to vite/README.md index 828871a..829231b 100644 --- a/vite-simple/README.md +++ b/vite/README.md @@ -6,7 +6,7 @@ This repository contains an example of vuejs application that is deployed on Dok 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/vite-simple` + - Build path: `/vite` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/vite-simple/index.html b/vite/index.html similarity index 100% rename from vite-simple/index.html rename to vite/index.html diff --git a/vite-simple/package.json b/vite/package.json similarity index 96% rename from vite-simple/package.json rename to vite/package.json index 30e5ed8..63315e6 100644 --- a/vite-simple/package.json +++ b/vite/package.json @@ -1,5 +1,5 @@ { - "name": "vite-simple", + "name": "vite", "private": true, "version": "0.0.0", "type": "module", diff --git a/vite-simple/pnpm-lock.yaml b/vite/pnpm-lock.yaml similarity index 100% rename from vite-simple/pnpm-lock.yaml rename to vite/pnpm-lock.yaml diff --git a/vite-simple/public/vite.svg b/vite/public/vite.svg similarity index 100% rename from vite-simple/public/vite.svg rename to vite/public/vite.svg diff --git a/vite-simple/src/App.css b/vite/src/App.css similarity index 100% rename from vite-simple/src/App.css rename to vite/src/App.css diff --git a/vite-simple/src/App.tsx b/vite/src/App.tsx similarity index 100% rename from vite-simple/src/App.tsx rename to vite/src/App.tsx diff --git a/vite-simple/src/assets/react.svg b/vite/src/assets/react.svg similarity index 100% rename from vite-simple/src/assets/react.svg rename to vite/src/assets/react.svg diff --git a/vite-simple/src/index.css b/vite/src/index.css similarity index 100% rename from vite-simple/src/index.css rename to vite/src/index.css diff --git a/vite-simple/src/main.tsx b/vite/src/main.tsx similarity index 100% rename from vite-simple/src/main.tsx rename to vite/src/main.tsx diff --git a/vite-simple/src/vite-env.d.ts b/vite/src/vite-env.d.ts similarity index 100% rename from vite-simple/src/vite-env.d.ts rename to vite/src/vite-env.d.ts diff --git a/vite-simple/tsconfig.app.json b/vite/tsconfig.app.json similarity index 100% rename from vite-simple/tsconfig.app.json rename to vite/tsconfig.app.json diff --git a/vite-simple/tsconfig.json b/vite/tsconfig.json similarity index 100% rename from vite-simple/tsconfig.json rename to vite/tsconfig.json diff --git a/vite-simple/tsconfig.node.json b/vite/tsconfig.node.json similarity index 100% rename from vite-simple/tsconfig.node.json rename to vite/tsconfig.node.json diff --git a/vite-simple/vite.config.ts b/vite/vite.config.ts similarity index 100% rename from vite-simple/vite.config.ts rename to vite/vite.config.ts diff --git a/vuejs-simple/.gitignore b/vuejs/.gitignore similarity index 100% rename from vuejs-simple/.gitignore rename to vuejs/.gitignore diff --git a/vuejs-simple/.vscode/extensions.json b/vuejs/.vscode/extensions.json similarity index 100% rename from vuejs-simple/.vscode/extensions.json rename to vuejs/.vscode/extensions.json diff --git a/vuejs-simple/README.md b/vuejs/README.md similarity index 95% rename from vuejs-simple/README.md rename to vuejs/README.md index aae08d2..74ef60b 100644 --- a/vuejs-simple/README.md +++ b/vuejs/README.md @@ -6,7 +6,7 @@ This repository contains an example of vuejs application that is deployed on Dok 1. **Use Git Provider in Your Application**: - Repository: `https://github.com/Dokploy/examples.git` - Branch: `main` - - Build path: `/vuejs-simple` + - Build path: `/vuejs` 2. **Add Environment Variables**: - Navigate to the "Environments" tab and add the following variable: diff --git a/vuejs-simple/env.d.ts b/vuejs/env.d.ts similarity index 100% rename from vuejs-simple/env.d.ts rename to vuejs/env.d.ts diff --git a/vuejs-simple/index.html b/vuejs/index.html similarity index 100% rename from vuejs-simple/index.html rename to vuejs/index.html diff --git a/vuejs-simple/package.json b/vuejs/package.json similarity index 95% rename from vuejs-simple/package.json rename to vuejs/package.json index d1def12..f7e3842 100644 --- a/vuejs-simple/package.json +++ b/vuejs/package.json @@ -1,5 +1,5 @@ { - "name": "vuejs-simple", + "name": "vuejs", "version": "0.0.0", "private": true, "type": "module", diff --git a/vuejs-simple/pnpm-lock.yaml b/vuejs/pnpm-lock.yaml similarity index 100% rename from vuejs-simple/pnpm-lock.yaml rename to vuejs/pnpm-lock.yaml diff --git a/vuejs-simple/public/favicon.ico b/vuejs/public/favicon.ico similarity index 100% rename from vuejs-simple/public/favicon.ico rename to vuejs/public/favicon.ico diff --git a/vuejs-simple/src/App.vue b/vuejs/src/App.vue similarity index 100% rename from vuejs-simple/src/App.vue rename to vuejs/src/App.vue diff --git a/vuejs-simple/src/assets/base.css b/vuejs/src/assets/base.css similarity index 100% rename from vuejs-simple/src/assets/base.css rename to vuejs/src/assets/base.css diff --git a/vuejs-simple/src/assets/logo.svg b/vuejs/src/assets/logo.svg similarity index 100% rename from vuejs-simple/src/assets/logo.svg rename to vuejs/src/assets/logo.svg diff --git a/vuejs-simple/src/assets/main.css b/vuejs/src/assets/main.css similarity index 100% rename from vuejs-simple/src/assets/main.css rename to vuejs/src/assets/main.css diff --git a/vuejs-simple/src/components/HelloWorld.vue b/vuejs/src/components/HelloWorld.vue similarity index 100% rename from vuejs-simple/src/components/HelloWorld.vue rename to vuejs/src/components/HelloWorld.vue diff --git a/vuejs-simple/src/components/TheWelcome.vue b/vuejs/src/components/TheWelcome.vue similarity index 100% rename from vuejs-simple/src/components/TheWelcome.vue rename to vuejs/src/components/TheWelcome.vue diff --git a/vuejs-simple/src/components/WelcomeItem.vue b/vuejs/src/components/WelcomeItem.vue similarity index 100% rename from vuejs-simple/src/components/WelcomeItem.vue rename to vuejs/src/components/WelcomeItem.vue diff --git a/vuejs-simple/src/components/icons/IconCommunity.vue b/vuejs/src/components/icons/IconCommunity.vue similarity index 100% rename from vuejs-simple/src/components/icons/IconCommunity.vue rename to vuejs/src/components/icons/IconCommunity.vue diff --git a/vuejs-simple/src/components/icons/IconDocumentation.vue b/vuejs/src/components/icons/IconDocumentation.vue similarity index 100% rename from vuejs-simple/src/components/icons/IconDocumentation.vue rename to vuejs/src/components/icons/IconDocumentation.vue diff --git a/vuejs-simple/src/components/icons/IconEcosystem.vue b/vuejs/src/components/icons/IconEcosystem.vue similarity index 100% rename from vuejs-simple/src/components/icons/IconEcosystem.vue rename to vuejs/src/components/icons/IconEcosystem.vue diff --git a/vuejs-simple/src/components/icons/IconSupport.vue b/vuejs/src/components/icons/IconSupport.vue similarity index 100% rename from vuejs-simple/src/components/icons/IconSupport.vue rename to vuejs/src/components/icons/IconSupport.vue diff --git a/vuejs-simple/src/components/icons/IconTooling.vue b/vuejs/src/components/icons/IconTooling.vue similarity index 100% rename from vuejs-simple/src/components/icons/IconTooling.vue rename to vuejs/src/components/icons/IconTooling.vue diff --git a/vuejs-simple/src/main.ts b/vuejs/src/main.ts similarity index 100% rename from vuejs-simple/src/main.ts rename to vuejs/src/main.ts diff --git a/vuejs-simple/tsconfig.app.json b/vuejs/tsconfig.app.json similarity index 100% rename from vuejs-simple/tsconfig.app.json rename to vuejs/tsconfig.app.json diff --git a/vuejs-simple/tsconfig.json b/vuejs/tsconfig.json similarity index 100% rename from vuejs-simple/tsconfig.json rename to vuejs/tsconfig.json diff --git a/vuejs-simple/tsconfig.node.json b/vuejs/tsconfig.node.json similarity index 100% rename from vuejs-simple/tsconfig.node.json rename to vuejs/tsconfig.node.json diff --git a/vuejs-simple/vite.config.ts b/vuejs/vite.config.ts similarity index 100% rename from vuejs-simple/vite.config.ts rename to vuejs/vite.config.ts