litestar-vite 0.1.1__py3-none-any.whl → 0.15.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- litestar_vite/__init__.py +54 -4
- litestar_vite/__metadata__.py +12 -7
- litestar_vite/cli.py +1048 -10
- litestar_vite/codegen/__init__.py +48 -0
- litestar_vite/codegen/_export.py +229 -0
- litestar_vite/codegen/_inertia.py +619 -0
- litestar_vite/codegen/_openapi.py +280 -0
- litestar_vite/codegen/_routes.py +720 -0
- litestar_vite/codegen/_ts.py +235 -0
- litestar_vite/codegen/_utils.py +141 -0
- litestar_vite/commands.py +73 -0
- litestar_vite/config/__init__.py +997 -0
- litestar_vite/config/_constants.py +97 -0
- litestar_vite/config/_deploy.py +70 -0
- litestar_vite/config/_inertia.py +241 -0
- litestar_vite/config/_paths.py +63 -0
- litestar_vite/config/_runtime.py +235 -0
- litestar_vite/config/_spa.py +93 -0
- litestar_vite/config/_types.py +94 -0
- litestar_vite/deploy.py +366 -0
- litestar_vite/doctor.py +1181 -0
- litestar_vite/exceptions.py +78 -0
- litestar_vite/executor.py +360 -0
- litestar_vite/handler/__init__.py +9 -0
- litestar_vite/handler/_app.py +612 -0
- litestar_vite/handler/_routing.py +130 -0
- litestar_vite/html_transform.py +569 -0
- litestar_vite/inertia/__init__.py +77 -0
- litestar_vite/inertia/_utils.py +119 -0
- litestar_vite/inertia/exception_handler.py +178 -0
- litestar_vite/inertia/helpers.py +1571 -0
- litestar_vite/inertia/middleware.py +54 -0
- litestar_vite/inertia/plugin.py +199 -0
- litestar_vite/inertia/precognition.py +274 -0
- litestar_vite/inertia/request.py +334 -0
- litestar_vite/inertia/response.py +802 -0
- litestar_vite/inertia/types.py +335 -0
- litestar_vite/loader.py +464 -123
- litestar_vite/plugin/__init__.py +687 -0
- litestar_vite/plugin/_process.py +185 -0
- litestar_vite/plugin/_proxy.py +689 -0
- litestar_vite/plugin/_proxy_headers.py +244 -0
- litestar_vite/plugin/_static.py +37 -0
- litestar_vite/plugin/_utils.py +489 -0
- litestar_vite/py.typed +0 -0
- litestar_vite/scaffolding/__init__.py +20 -0
- litestar_vite/scaffolding/generator.py +270 -0
- litestar_vite/scaffolding/templates.py +437 -0
- litestar_vite/templates/__init__.py +0 -0
- litestar_vite/templates/addons/tailwindcss/tailwind.css.j2 +1 -0
- litestar_vite/templates/angular/index.html.j2 +12 -0
- litestar_vite/templates/angular/openapi-ts.config.ts.j2 +18 -0
- litestar_vite/templates/angular/package.json.j2 +36 -0
- litestar_vite/templates/angular/src/app/app.component.css.j2 +3 -0
- litestar_vite/templates/angular/src/app/app.component.html.j2 +1 -0
- litestar_vite/templates/angular/src/app/app.component.ts.j2 +9 -0
- litestar_vite/templates/angular/src/app/app.config.ts.j2 +5 -0
- litestar_vite/templates/angular/src/main.ts.j2 +9 -0
- litestar_vite/templates/angular/src/styles.css.j2 +9 -0
- litestar_vite/templates/angular/tsconfig.app.json.j2 +34 -0
- litestar_vite/templates/angular/tsconfig.json.j2 +20 -0
- litestar_vite/templates/angular/vite.config.ts.j2 +21 -0
- litestar_vite/templates/angular-cli/.postcssrc.json.j2 +5 -0
- litestar_vite/templates/angular-cli/angular.json.j2 +36 -0
- litestar_vite/templates/angular-cli/openapi-ts.config.ts.j2 +18 -0
- litestar_vite/templates/angular-cli/package.json.j2 +28 -0
- litestar_vite/templates/angular-cli/proxy.conf.json.j2 +18 -0
- litestar_vite/templates/angular-cli/src/app/app.component.css.j2 +3 -0
- litestar_vite/templates/angular-cli/src/app/app.component.html.j2 +1 -0
- litestar_vite/templates/angular-cli/src/app/app.component.ts.j2 +9 -0
- litestar_vite/templates/angular-cli/src/app/app.config.ts.j2 +5 -0
- litestar_vite/templates/angular-cli/src/index.html.j2 +13 -0
- litestar_vite/templates/angular-cli/src/main.ts.j2 +6 -0
- litestar_vite/templates/angular-cli/src/styles.css.j2 +10 -0
- litestar_vite/templates/angular-cli/tailwind.config.js.j2 +4 -0
- litestar_vite/templates/angular-cli/tsconfig.app.json.j2 +16 -0
- litestar_vite/templates/angular-cli/tsconfig.json.j2 +26 -0
- litestar_vite/templates/angular-cli/tsconfig.spec.json.j2 +9 -0
- litestar_vite/templates/astro/astro.config.mjs.j2 +28 -0
- litestar_vite/templates/astro/openapi-ts.config.ts.j2 +15 -0
- litestar_vite/templates/astro/src/layouts/Layout.astro.j2 +63 -0
- litestar_vite/templates/astro/src/pages/index.astro.j2 +36 -0
- litestar_vite/templates/astro/src/styles/global.css.j2 +1 -0
- litestar_vite/templates/base/.gitignore.j2 +42 -0
- litestar_vite/templates/base/openapi-ts.config.ts.j2 +15 -0
- litestar_vite/templates/base/package.json.j2 +39 -0
- litestar_vite/templates/base/resources/vite-env.d.ts.j2 +1 -0
- litestar_vite/templates/base/tsconfig.json.j2 +37 -0
- litestar_vite/templates/htmx/src/main.js.j2 +8 -0
- litestar_vite/templates/htmx/templates/base.html.j2.j2 +56 -0
- litestar_vite/templates/htmx/templates/index.html.j2.j2 +13 -0
- litestar_vite/templates/htmx/vite.config.ts.j2 +40 -0
- litestar_vite/templates/nuxt/app.vue.j2 +29 -0
- litestar_vite/templates/nuxt/composables/useApi.ts.j2 +33 -0
- litestar_vite/templates/nuxt/nuxt.config.ts.j2 +31 -0
- litestar_vite/templates/nuxt/openapi-ts.config.ts.j2 +15 -0
- litestar_vite/templates/nuxt/pages/index.vue.j2 +54 -0
- litestar_vite/templates/react/index.html.j2 +13 -0
- litestar_vite/templates/react/src/App.css.j2 +56 -0
- litestar_vite/templates/react/src/App.tsx.j2 +19 -0
- litestar_vite/templates/react/src/main.tsx.j2 +10 -0
- litestar_vite/templates/react/vite.config.ts.j2 +39 -0
- litestar_vite/templates/react-inertia/index.html.j2 +14 -0
- litestar_vite/templates/react-inertia/package.json.j2 +47 -0
- litestar_vite/templates/react-inertia/resources/App.css.j2 +68 -0
- litestar_vite/templates/react-inertia/resources/main.tsx.j2 +17 -0
- litestar_vite/templates/react-inertia/resources/pages/Home.tsx.j2 +18 -0
- litestar_vite/templates/react-inertia/resources/ssr.tsx.j2 +19 -0
- litestar_vite/templates/react-inertia/vite.config.ts.j2 +59 -0
- litestar_vite/templates/react-router/index.html.j2 +12 -0
- litestar_vite/templates/react-router/src/App.css.j2 +17 -0
- litestar_vite/templates/react-router/src/App.tsx.j2 +7 -0
- litestar_vite/templates/react-router/src/main.tsx.j2 +10 -0
- litestar_vite/templates/react-router/vite.config.ts.j2 +39 -0
- litestar_vite/templates/react-tanstack/index.html.j2 +12 -0
- litestar_vite/templates/react-tanstack/openapi-ts.config.ts.j2 +18 -0
- litestar_vite/templates/react-tanstack/src/App.css.j2 +17 -0
- litestar_vite/templates/react-tanstack/src/main.tsx.j2 +21 -0
- litestar_vite/templates/react-tanstack/src/routeTree.gen.ts.j2 +7 -0
- litestar_vite/templates/react-tanstack/src/routes/__root.tsx.j2 +9 -0
- litestar_vite/templates/react-tanstack/src/routes/books.tsx.j2 +9 -0
- litestar_vite/templates/react-tanstack/src/routes/index.tsx.j2 +9 -0
- litestar_vite/templates/react-tanstack/vite.config.ts.j2 +39 -0
- litestar_vite/templates/svelte/index.html.j2 +13 -0
- litestar_vite/templates/svelte/src/App.svelte.j2 +30 -0
- litestar_vite/templates/svelte/src/app.css.j2 +45 -0
- litestar_vite/templates/svelte/src/main.ts.j2 +8 -0
- litestar_vite/templates/svelte/src/vite-env.d.ts.j2 +2 -0
- litestar_vite/templates/svelte/svelte.config.js.j2 +5 -0
- litestar_vite/templates/svelte/vite.config.ts.j2 +39 -0
- litestar_vite/templates/svelte-inertia/index.html.j2 +14 -0
- litestar_vite/templates/svelte-inertia/resources/app.css.j2 +21 -0
- litestar_vite/templates/svelte-inertia/resources/main.ts.j2 +11 -0
- litestar_vite/templates/svelte-inertia/resources/pages/Home.svelte.j2 +43 -0
- litestar_vite/templates/svelte-inertia/resources/vite-env.d.ts.j2 +2 -0
- litestar_vite/templates/svelte-inertia/svelte.config.js.j2 +5 -0
- litestar_vite/templates/svelte-inertia/vite.config.ts.j2 +37 -0
- litestar_vite/templates/sveltekit/openapi-ts.config.ts.j2 +15 -0
- litestar_vite/templates/sveltekit/src/app.css.j2 +40 -0
- litestar_vite/templates/sveltekit/src/app.html.j2 +12 -0
- litestar_vite/templates/sveltekit/src/hooks.server.ts.j2 +55 -0
- litestar_vite/templates/sveltekit/src/routes/+layout.svelte.j2 +12 -0
- litestar_vite/templates/sveltekit/src/routes/+page.svelte.j2 +34 -0
- litestar_vite/templates/sveltekit/svelte.config.js.j2 +12 -0
- litestar_vite/templates/sveltekit/tsconfig.json.j2 +14 -0
- litestar_vite/templates/sveltekit/vite.config.ts.j2 +31 -0
- litestar_vite/templates/vue/env.d.ts.j2 +7 -0
- litestar_vite/templates/vue/index.html.j2 +13 -0
- litestar_vite/templates/vue/src/App.vue.j2 +28 -0
- litestar_vite/templates/vue/src/main.ts.j2 +5 -0
- litestar_vite/templates/vue/src/style.css.j2 +45 -0
- litestar_vite/templates/vue/vite.config.ts.j2 +39 -0
- litestar_vite/templates/vue-inertia/env.d.ts.j2 +7 -0
- litestar_vite/templates/vue-inertia/index.html.j2 +14 -0
- litestar_vite/templates/vue-inertia/package.json.j2 +50 -0
- litestar_vite/templates/vue-inertia/resources/main.ts.j2 +18 -0
- litestar_vite/templates/vue-inertia/resources/pages/Home.vue.j2 +22 -0
- litestar_vite/templates/vue-inertia/resources/ssr.ts.j2 +21 -0
- litestar_vite/templates/vue-inertia/resources/style.css.j2 +21 -0
- litestar_vite/templates/vue-inertia/vite.config.ts.j2 +59 -0
- litestar_vite-0.15.0.dist-info/METADATA +230 -0
- litestar_vite-0.15.0.dist-info/RECORD +164 -0
- {litestar_vite-0.1.1.dist-info → litestar_vite-0.15.0.dist-info}/WHEEL +1 -1
- litestar_vite/config.py +0 -100
- litestar_vite/plugin.py +0 -45
- litestar_vite/template_engine.py +0 -103
- litestar_vite-0.1.1.dist-info/METADATA +0 -68
- litestar_vite-0.1.1.dist-info/RECORD +0 -11
- {litestar_vite-0.1.1.dist-info → litestar_vite-0.15.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import createServer from "@inertiajs/react/server";
|
|
2
|
+
import { createInertiaApp } from "@inertiajs/react";
|
|
3
|
+
import { renderToString } from "react-dom/server";
|
|
4
|
+
|
|
5
|
+
import { resolvePageComponent } from "litestar-vite-plugin/inertia-helpers";
|
|
6
|
+
|
|
7
|
+
createServer(
|
|
8
|
+
async (page) => {
|
|
9
|
+
const inertia = await createInertiaApp({
|
|
10
|
+
page,
|
|
11
|
+
render: renderToString,
|
|
12
|
+
resolve: (name) => resolvePageComponent(`./pages/${name}.tsx`, import.meta.glob("./pages/**/*.tsx")),
|
|
13
|
+
setup: ({ App, props }) => <App {...props} />,
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
return inertia;
|
|
17
|
+
},
|
|
18
|
+
Number.parseInt(process.env.INERTIA_SSR_PORT || "13714"),
|
|
19
|
+
);
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { defineConfig } from "vite";
|
|
2
|
+
import react from "@vitejs/plugin-react";
|
|
3
|
+
import litestar from "litestar-vite-plugin";
|
|
4
|
+
{% if use_tailwind %}
|
|
5
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
6
|
+
{% endif %}
|
|
7
|
+
|
|
8
|
+
{% if enable_ssr %}
|
|
9
|
+
export default defineConfig(({ ssrBuild }) => ({
|
|
10
|
+
{% else %}
|
|
11
|
+
export default defineConfig({
|
|
12
|
+
{% endif %}
|
|
13
|
+
server: {
|
|
14
|
+
host: "0.0.0.0",
|
|
15
|
+
port: Number(process.env.VITE_PORT || "{{ vite_port }}"),
|
|
16
|
+
cors: true,
|
|
17
|
+
hmr: {
|
|
18
|
+
host: "localhost",
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
plugins: [
|
|
22
|
+
{% if use_tailwind %}
|
|
23
|
+
tailwindcss(),
|
|
24
|
+
{% endif %}
|
|
25
|
+
react(),
|
|
26
|
+
litestar({
|
|
27
|
+
input: ["{{ resource_dir }}/main.tsx"],
|
|
28
|
+
{% if enable_ssr %}
|
|
29
|
+
ssr: "{{ resource_dir }}/ssr.tsx",
|
|
30
|
+
{% endif %}
|
|
31
|
+
{% if enable_types %}
|
|
32
|
+
types: {
|
|
33
|
+
enabled: true,
|
|
34
|
+
output: "{{ resource_dir }}/generated/api",
|
|
35
|
+
},
|
|
36
|
+
{% endif %}
|
|
37
|
+
}),
|
|
38
|
+
],
|
|
39
|
+
{% if enable_ssr %}
|
|
40
|
+
build: {
|
|
41
|
+
rollupOptions: {
|
|
42
|
+
output: ssrBuild
|
|
43
|
+
? {
|
|
44
|
+
entryFileNames: "ssr.js",
|
|
45
|
+
}
|
|
46
|
+
: undefined,
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
{% endif %}
|
|
50
|
+
resolve: {
|
|
51
|
+
alias: {
|
|
52
|
+
"@": "/{{ resource_dir }}",
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
{% if enable_ssr %}
|
|
56
|
+
}));
|
|
57
|
+
{% else %}
|
|
58
|
+
});
|
|
59
|
+
{% endif %}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>{{ project_name }}</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
<div id="app"></div>
|
|
10
|
+
<script type="module" src="/{{ resource_dir }}/main.tsx"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
|
|
3
|
+
line-height: 1.5;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-synthesis: none;
|
|
6
|
+
text-rendering: optimizeLegibility;
|
|
7
|
+
-webkit-font-smoothing: antialiased;
|
|
8
|
+
-moz-osx-font-smoothing: grayscale;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
* {
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
body {
|
|
16
|
+
margin: 0;
|
|
17
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { defineConfig } from "vite";
|
|
2
|
+
import react from "@vitejs/plugin-react";
|
|
3
|
+
import litestar from "litestar-vite-plugin";
|
|
4
|
+
{% if use_tailwind %}
|
|
5
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
6
|
+
{% endif %}
|
|
7
|
+
|
|
8
|
+
export default defineConfig({
|
|
9
|
+
server: {
|
|
10
|
+
host: "0.0.0.0",
|
|
11
|
+
port: Number(process.env.VITE_PORT || "{{ vite_port }}"),
|
|
12
|
+
cors: true,
|
|
13
|
+
hmr: {
|
|
14
|
+
host: "localhost",
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
plugins: [
|
|
18
|
+
{% if use_tailwind %}
|
|
19
|
+
tailwindcss(),
|
|
20
|
+
{% endif %}
|
|
21
|
+
react(),
|
|
22
|
+
litestar({
|
|
23
|
+
input: ["{{ resource_dir }}/main.tsx"],
|
|
24
|
+
{% if enable_types %}
|
|
25
|
+
types: {
|
|
26
|
+
enabled: true,
|
|
27
|
+
output: "{{ resource_dir }}/generated/types",
|
|
28
|
+
generateZod: true,
|
|
29
|
+
generateSdk: true,
|
|
30
|
+
},
|
|
31
|
+
{% endif %}
|
|
32
|
+
}),
|
|
33
|
+
],
|
|
34
|
+
resolve: {
|
|
35
|
+
alias: {
|
|
36
|
+
"@": "/{{ resource_dir }}",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>{{ project_name }}</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
<div id="app"></div>
|
|
10
|
+
<script type="module" src="/{{ resource_dir }}/main.tsx"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineConfig } from "@hey-api/openapi-ts";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
client: "@hey-api/client-fetch",
|
|
5
|
+
input: "./{{ resource_dir }}/generated/openapi.json",
|
|
6
|
+
output: {
|
|
7
|
+
path: "./{{ resource_dir }}/generated/api",
|
|
8
|
+
format: "prettier",
|
|
9
|
+
},
|
|
10
|
+
plugins: [
|
|
11
|
+
"@hey-api/schemas",
|
|
12
|
+
"@hey-api/sdk",
|
|
13
|
+
{
|
|
14
|
+
name: "@hey-api/typescript",
|
|
15
|
+
enums: "javascript",
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
|
|
3
|
+
line-height: 1.5;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-synthesis: none;
|
|
6
|
+
text-rendering: optimizeLegibility;
|
|
7
|
+
-webkit-font-smoothing: antialiased;
|
|
8
|
+
-moz-osx-font-smoothing: grayscale;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
* {
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
body {
|
|
16
|
+
margin: 0;
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { StrictMode } from "react";
|
|
2
|
+
import { createRoot } from "react-dom/client";
|
|
3
|
+
import { RouterProvider, createRouter } from "@tanstack/react-router";
|
|
4
|
+
import { routeTree } from "./routeTree.gen";
|
|
5
|
+
import "./App.css";
|
|
6
|
+
|
|
7
|
+
// Create a new router instance
|
|
8
|
+
const router = createRouter({ routeTree });
|
|
9
|
+
|
|
10
|
+
// Register the router instance for type safety
|
|
11
|
+
declare module "@tanstack/react-router" {
|
|
12
|
+
interface Register {
|
|
13
|
+
router: typeof router;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
createRoot(document.getElementById("app")!).render(
|
|
18
|
+
<StrictMode>
|
|
19
|
+
<RouterProvider router={router} />
|
|
20
|
+
</StrictMode>
|
|
21
|
+
);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is auto-generated by TanStack Router plugin
|
|
2
|
+
// Run `npm run dev` to regenerate this file
|
|
3
|
+
|
|
4
|
+
import { createRootRoute, createRoute } from "@tanstack/react-router";
|
|
5
|
+
|
|
6
|
+
// Placeholder route tree - will be regenerated by @tanstack/router-plugin
|
|
7
|
+
export const routeTree = createRootRoute();
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { defineConfig } from "vite";
|
|
2
|
+
import react from "@vitejs/plugin-react";
|
|
3
|
+
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
|
|
4
|
+
import litestar from "litestar-vite-plugin";
|
|
5
|
+
{% if use_tailwind %}
|
|
6
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
7
|
+
{% endif %}
|
|
8
|
+
|
|
9
|
+
export default defineConfig({
|
|
10
|
+
server: {
|
|
11
|
+
host: "0.0.0.0",
|
|
12
|
+
port: Number(process.env.VITE_PORT || "{{ vite_port }}"),
|
|
13
|
+
cors: true,
|
|
14
|
+
hmr: {
|
|
15
|
+
host: "localhost",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
plugins: [
|
|
19
|
+
{% if use_tailwind %}
|
|
20
|
+
tailwindcss(),
|
|
21
|
+
{% endif %}
|
|
22
|
+
TanStackRouterVite(),
|
|
23
|
+
react(),
|
|
24
|
+
litestar({
|
|
25
|
+
input: ["{{ resource_dir }}/main.tsx"],
|
|
26
|
+
types: {
|
|
27
|
+
enabled: true,
|
|
28
|
+
output: "{{ resource_dir }}/generated/types",
|
|
29
|
+
generateZod: true,
|
|
30
|
+
generateSdk: true,
|
|
31
|
+
},
|
|
32
|
+
}),
|
|
33
|
+
],
|
|
34
|
+
resolve: {
|
|
35
|
+
alias: {
|
|
36
|
+
"@": "/{{ resource_dir }}",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>{{ project_name }}</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="app"></div>
|
|
11
|
+
<script type="module" src="/{{ resource_dir }}/main.ts"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let count = $state(0);
|
|
3
|
+
|
|
4
|
+
function increment() {
|
|
5
|
+
count += 1;
|
|
6
|
+
}
|
|
7
|
+
</script>
|
|
8
|
+
|
|
9
|
+
<main class="app">
|
|
10
|
+
<h1>{{ project_name }}</h1>
|
|
11
|
+
<p>Svelte 5 + Litestar + Vite</p>
|
|
12
|
+
<div class="card">
|
|
13
|
+
<button onclick={increment}>
|
|
14
|
+
count is {count}
|
|
15
|
+
</button>
|
|
16
|
+
</div>
|
|
17
|
+
</main>
|
|
18
|
+
|
|
19
|
+
<style>
|
|
20
|
+
.app {
|
|
21
|
+
max-width: 1280px;
|
|
22
|
+
margin: 0 auto;
|
|
23
|
+
padding: 2rem;
|
|
24
|
+
text-align: center;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.card {
|
|
28
|
+
padding: 2em;
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
3
|
+
line-height: 1.5;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
|
|
6
|
+
color-scheme: light dark;
|
|
7
|
+
color: rgba(255, 255, 255, 0.87);
|
|
8
|
+
background-color: #242424;
|
|
9
|
+
|
|
10
|
+
font-synthesis: none;
|
|
11
|
+
text-rendering: optimizeLegibility;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
button {
|
|
17
|
+
border-radius: 8px;
|
|
18
|
+
border: 1px solid transparent;
|
|
19
|
+
padding: 0.6em 1.2em;
|
|
20
|
+
font-size: 1em;
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
font-family: inherit;
|
|
23
|
+
background-color: #1a1a1a;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
transition: border-color 0.25s;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
button:hover {
|
|
29
|
+
border-color: #ff3e00;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
button:focus,
|
|
33
|
+
button:focus-visible {
|
|
34
|
+
outline: 4px auto -webkit-focus-ring-color;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@media (prefers-color-scheme: light) {
|
|
38
|
+
:root {
|
|
39
|
+
color: #213547;
|
|
40
|
+
background-color: #ffffff;
|
|
41
|
+
}
|
|
42
|
+
button {
|
|
43
|
+
background-color: #f9f9f9;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { defineConfig } from "vite";
|
|
2
|
+
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
3
|
+
import litestar from "litestar-vite-plugin";
|
|
4
|
+
{% if use_tailwind %}
|
|
5
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
6
|
+
{% endif %}
|
|
7
|
+
|
|
8
|
+
export default defineConfig({
|
|
9
|
+
server: {
|
|
10
|
+
host: "0.0.0.0",
|
|
11
|
+
port: Number(process.env.VITE_PORT || "{{ vite_port }}"),
|
|
12
|
+
cors: true,
|
|
13
|
+
hmr: {
|
|
14
|
+
host: "localhost",
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
plugins: [
|
|
18
|
+
{% if use_tailwind %}
|
|
19
|
+
tailwindcss(),
|
|
20
|
+
{% endif %}
|
|
21
|
+
svelte(),
|
|
22
|
+
litestar({
|
|
23
|
+
input: ["{{ resource_dir }}/main.ts"],
|
|
24
|
+
{% if enable_types %}
|
|
25
|
+
types: {
|
|
26
|
+
enabled: true,
|
|
27
|
+
output: "{{ resource_dir }}/generated/types",
|
|
28
|
+
generateZod: true,
|
|
29
|
+
generateSdk: true,
|
|
30
|
+
},
|
|
31
|
+
{% endif %}
|
|
32
|
+
}),
|
|
33
|
+
],
|
|
34
|
+
resolve: {
|
|
35
|
+
alias: {
|
|
36
|
+
"@": "/{{ resource_dir }}",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/static/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title inertia>{{ project_name }}</title>
|
|
8
|
+
{{ "{{ vite_hmr() }}" }}
|
|
9
|
+
{{ "{{ vite('{{ resource_dir }}/main.ts') }}" }}
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<div id="app" data-page='{{ "{{ inertia | safe }}" }}'></div>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
3
|
+
line-height: 1.5;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
|
|
6
|
+
color-scheme: light dark;
|
|
7
|
+
color: rgba(255, 255, 255, 0.87);
|
|
8
|
+
background-color: #242424;
|
|
9
|
+
|
|
10
|
+
font-synthesis: none;
|
|
11
|
+
text-rendering: optimizeLegibility;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@media (prefers-color-scheme: light) {
|
|
17
|
+
:root {
|
|
18
|
+
color: #213547;
|
|
19
|
+
background-color: #ffffff;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { createInertiaApp } from "@inertiajs/svelte";
|
|
2
|
+
import { resolvePageComponent } from "litestar-vite-plugin/inertia-helpers";
|
|
3
|
+
import "./app.css";
|
|
4
|
+
|
|
5
|
+
createInertiaApp({
|
|
6
|
+
resolve: (name) =>
|
|
7
|
+
resolvePageComponent(`./pages/${name}.svelte`, import.meta.glob("./pages/**/*.svelte")),
|
|
8
|
+
setup({ el, App }) {
|
|
9
|
+
new App({ target: el });
|
|
10
|
+
},
|
|
11
|
+
});
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { inertia } from "@inertiajs/svelte";
|
|
3
|
+
|
|
4
|
+
export let message: string | undefined = undefined;
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<svelte:head>
|
|
8
|
+
<title>Home - {{ project_name }}</title>
|
|
9
|
+
</svelte:head>
|
|
10
|
+
|
|
11
|
+
<main class="app">
|
|
12
|
+
<h1>{{ project_name }}</h1>
|
|
13
|
+
<p>Svelte + Inertia.js + Litestar</p>
|
|
14
|
+
{#if message}
|
|
15
|
+
<p class="message">{message}</p>
|
|
16
|
+
{/if}
|
|
17
|
+
<div class="links">
|
|
18
|
+
<a href="/users" use:inertia>View Users</a>
|
|
19
|
+
</div>
|
|
20
|
+
</main>
|
|
21
|
+
|
|
22
|
+
<style>
|
|
23
|
+
.app {
|
|
24
|
+
max-width: 1280px;
|
|
25
|
+
margin: 0 auto;
|
|
26
|
+
padding: 2rem;
|
|
27
|
+
text-align: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.message {
|
|
31
|
+
color: #ff3e00;
|
|
32
|
+
font-weight: 500;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.links a {
|
|
36
|
+
color: #ff3e00;
|
|
37
|
+
text-decoration: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.links a:hover {
|
|
41
|
+
text-decoration: underline;
|
|
42
|
+
}
|
|
43
|
+
</style>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { defineConfig } from "vite";
|
|
2
|
+
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
3
|
+
import litestar from "litestar-vite-plugin";
|
|
4
|
+
{% if use_tailwind %}
|
|
5
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
6
|
+
{% endif %}
|
|
7
|
+
|
|
8
|
+
export default defineConfig({
|
|
9
|
+
server: {
|
|
10
|
+
host: "0.0.0.0",
|
|
11
|
+
port: Number(process.env.VITE_PORT || "{{ vite_port }}"),
|
|
12
|
+
cors: true,
|
|
13
|
+
hmr: {
|
|
14
|
+
host: "localhost",
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
plugins: [
|
|
18
|
+
{% if use_tailwind %}
|
|
19
|
+
tailwindcss(),
|
|
20
|
+
{% endif %}
|
|
21
|
+
svelte(),
|
|
22
|
+
litestar({
|
|
23
|
+
input: ["{{ resource_dir }}/main.ts"],
|
|
24
|
+
{% if enable_types %}
|
|
25
|
+
types: {
|
|
26
|
+
enabled: true,
|
|
27
|
+
output: "{{ resource_dir }}/generated/api",
|
|
28
|
+
},
|
|
29
|
+
{% endif %}
|
|
30
|
+
}),
|
|
31
|
+
],
|
|
32
|
+
resolve: {
|
|
33
|
+
alias: {
|
|
34
|
+
"@": "/{{ resource_dir }}",
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineConfig } from "@hey-api/openapi-ts";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
input: "./src/lib/generated/openapi.json",
|
|
5
|
+
output: "./src/lib/generated/api",
|
|
6
|
+
plugins: [
|
|
7
|
+
"@hey-api/typescript",
|
|
8
|
+
"@hey-api/schemas",
|
|
9
|
+
"@hey-api/sdk",
|
|
10
|
+
"@hey-api/client-fetch",
|
|
11
|
+
{%- if generate_zod %}
|
|
12
|
+
"zod",
|
|
13
|
+
{%- endif %}
|
|
14
|
+
],
|
|
15
|
+
});
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
3
|
+
line-height: 1.5;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
|
|
6
|
+
color-scheme: light dark;
|
|
7
|
+
color: rgba(255, 255, 255, 0.87);
|
|
8
|
+
background-color: #242424;
|
|
9
|
+
|
|
10
|
+
font-synthesis: none;
|
|
11
|
+
text-rendering: optimizeLegibility;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
button {
|
|
17
|
+
border-radius: 8px;
|
|
18
|
+
border: 1px solid transparent;
|
|
19
|
+
padding: 0.6em 1.2em;
|
|
20
|
+
font-size: 1em;
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
font-family: inherit;
|
|
23
|
+
background-color: #1a1a1a;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
transition: border-color 0.25s;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
button:hover {
|
|
29
|
+
border-color: #ff3e00;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@media (prefers-color-scheme: light) {
|
|
33
|
+
:root {
|
|
34
|
+
color: #213547;
|
|
35
|
+
background-color: #ffffff;
|
|
36
|
+
}
|
|
37
|
+
button {
|
|
38
|
+
background-color: #f9f9f9;
|
|
39
|
+
}
|
|
40
|
+
}
|