litestar-vite 0.1.1__py3-none-any.whl → 0.15.0rc2__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/_codegen/__init__.py +26 -0
- litestar_vite/_codegen/inertia.py +407 -0
- litestar_vite/_codegen/openapi.py +233 -0
- litestar_vite/_codegen/routes.py +653 -0
- litestar_vite/_codegen/ts.py +235 -0
- litestar_vite/_handler/__init__.py +8 -0
- litestar_vite/_handler/app.py +524 -0
- litestar_vite/_handler/routing.py +130 -0
- litestar_vite/cli.py +1147 -10
- litestar_vite/codegen.py +39 -0
- litestar_vite/commands.py +79 -0
- litestar_vite/config.py +1594 -70
- litestar_vite/deploy.py +355 -0
- litestar_vite/doctor.py +1179 -0
- litestar_vite/exceptions.py +78 -0
- litestar_vite/executor.py +316 -0
- litestar_vite/handler.py +9 -0
- litestar_vite/html_transform.py +426 -0
- litestar_vite/inertia/__init__.py +53 -0
- litestar_vite/inertia/_utils.py +114 -0
- litestar_vite/inertia/exception_handler.py +172 -0
- litestar_vite/inertia/helpers.py +1043 -0
- litestar_vite/inertia/middleware.py +54 -0
- litestar_vite/inertia/plugin.py +133 -0
- litestar_vite/inertia/request.py +286 -0
- litestar_vite/inertia/response.py +706 -0
- litestar_vite/inertia/types.py +316 -0
- litestar_vite/loader.py +462 -121
- litestar_vite/plugin.py +2160 -21
- 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 +35 -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 +27 -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 +38 -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 +46 -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 +49 -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.0rc2.dist-info/METADATA +230 -0
- litestar_vite-0.15.0rc2.dist-info/RECORD +151 -0
- {litestar_vite-0.1.1.dist-info → litestar_vite-0.15.0rc2.dist-info}/WHEEL +1 -1
- 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.0rc2.dist-info}/licenses/LICENSE +0 -0
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
%sveltekit.head%
|
|
8
|
+
</head>
|
|
9
|
+
<body data-sveltekit-preload-data="hover">
|
|
10
|
+
<div style="display: contents">%sveltekit.body%</div>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SvelteKit server hooks for API proxying.
|
|
3
|
+
*
|
|
4
|
+
* In production, the SvelteKit Node.js server runs separately from Litestar.
|
|
5
|
+
* This hook proxies /api/* requests to the Litestar backend so client-side
|
|
6
|
+
* fetches work correctly without requiring an external reverse proxy.
|
|
7
|
+
*
|
|
8
|
+
* Environment variables:
|
|
9
|
+
* LITESTAR_API - Base URL of the Litestar API server (default: http://localhost:{{ litestar_port }})
|
|
10
|
+
*/
|
|
11
|
+
import type { Handle } from "@sveltejs/kit"
|
|
12
|
+
|
|
13
|
+
const LITESTAR_API = process.env.LITESTAR_API || "http://localhost:{{ litestar_port }}"
|
|
14
|
+
|
|
15
|
+
export const handle: Handle = async ({ event, resolve }) => {
|
|
16
|
+
// Proxy /api/* requests to the Litestar backend
|
|
17
|
+
if (event.url.pathname.startsWith("/api")) {
|
|
18
|
+
const apiUrl = `${LITESTAR_API}${event.url.pathname}${event.url.search}`
|
|
19
|
+
|
|
20
|
+
try {
|
|
21
|
+
// Forward the request to Litestar
|
|
22
|
+
const response = await fetch(apiUrl, {
|
|
23
|
+
method: event.request.method,
|
|
24
|
+
headers: new Headers({
|
|
25
|
+
// Forward relevant headers
|
|
26
|
+
"content-type": event.request.headers.get("content-type") || "application/json",
|
|
27
|
+
accept: event.request.headers.get("accept") || "application/json",
|
|
28
|
+
// Forward auth headers if present
|
|
29
|
+
...(event.request.headers.get("authorization")
|
|
30
|
+
? { authorization: event.request.headers.get("authorization")! }
|
|
31
|
+
: {}),
|
|
32
|
+
...(event.request.headers.get("cookie") ? { cookie: event.request.headers.get("cookie")! } : {}),
|
|
33
|
+
}),
|
|
34
|
+
body: event.request.method !== "GET" && event.request.method !== "HEAD" ? event.request.body : undefined,
|
|
35
|
+
// @ts-expect-error - duplex is required for streaming request bodies
|
|
36
|
+
duplex: "half",
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
// Return the proxied response
|
|
40
|
+
return new Response(response.body, {
|
|
41
|
+
status: response.status,
|
|
42
|
+
statusText: response.statusText,
|
|
43
|
+
headers: response.headers,
|
|
44
|
+
})
|
|
45
|
+
} catch (error) {
|
|
46
|
+
console.error(`[hooks.server] Failed to proxy ${event.url.pathname} to ${apiUrl}:`, error)
|
|
47
|
+
return new Response(JSON.stringify({ error: "API proxy failed", detail: String(error) }), {
|
|
48
|
+
status: 502,
|
|
49
|
+
headers: { "content-type": "application/json" },
|
|
50
|
+
})
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return resolve(event)
|
|
55
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let count = $state(0);
|
|
3
|
+
|
|
4
|
+
function increment() {
|
|
5
|
+
count += 1;
|
|
6
|
+
}
|
|
7
|
+
</script>
|
|
8
|
+
|
|
9
|
+
<svelte:head>
|
|
10
|
+
<title>{{ project_name }}</title>
|
|
11
|
+
</svelte:head>
|
|
12
|
+
|
|
13
|
+
<main class="app">
|
|
14
|
+
<h1>{{ project_name }}</h1>
|
|
15
|
+
<p>SvelteKit + Litestar</p>
|
|
16
|
+
<div class="card">
|
|
17
|
+
<button onclick={increment}>
|
|
18
|
+
count is {count}
|
|
19
|
+
</button>
|
|
20
|
+
</div>
|
|
21
|
+
</main>
|
|
22
|
+
|
|
23
|
+
<style>
|
|
24
|
+
.app {
|
|
25
|
+
max-width: 1280px;
|
|
26
|
+
margin: 0 auto;
|
|
27
|
+
padding: 2rem;
|
|
28
|
+
text-align: center;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.card {
|
|
32
|
+
padding: 2em;
|
|
33
|
+
}
|
|
34
|
+
</style>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import adapter from "@sveltejs/adapter-auto";
|
|
2
|
+
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
3
|
+
|
|
4
|
+
/** @type {import('@sveltejs/kit').Config} */
|
|
5
|
+
const config = {
|
|
6
|
+
preprocess: vitePreprocess(),
|
|
7
|
+
kit: {
|
|
8
|
+
adapter: adapter(),
|
|
9
|
+
},
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export default config;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./.svelte-kit/tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"target": "ES2022",
|
|
5
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
6
|
+
"skipLibCheck": true,
|
|
7
|
+
"strict": true,
|
|
8
|
+
"noUnusedLocals": true,
|
|
9
|
+
"noUnusedParameters": true,
|
|
10
|
+
"noFallthroughCasesInSwitch": true,
|
|
11
|
+
"noUncheckedSideEffectImports": true,
|
|
12
|
+
"resolveJsonModule": true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { sveltekit } from "@sveltejs/kit/vite";
|
|
2
|
+
import { litestarSvelteKit } from "litestar-vite-plugin/sveltekit";
|
|
3
|
+
import { defineConfig } from "vite";
|
|
4
|
+
{% if use_tailwind %}
|
|
5
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
6
|
+
{% endif %}
|
|
7
|
+
|
|
8
|
+
// Litestar manages the dev server port via VITE_PORT and runtime config.
|
|
9
|
+
// The SvelteKit plugin reads the port automatically - no hardcoding needed.
|
|
10
|
+
// LITESTAR_PORT is the backend API server port (default {{ litestar_port }}).
|
|
11
|
+
const LITESTAR_PORT = process.env.LITESTAR_PORT ?? "{{ litestar_port }}";
|
|
12
|
+
|
|
13
|
+
export default defineConfig({
|
|
14
|
+
plugins: [
|
|
15
|
+
{% if use_tailwind %}
|
|
16
|
+
tailwindcss(),
|
|
17
|
+
{% endif %}
|
|
18
|
+
litestarSvelteKit({
|
|
19
|
+
// API proxy points to the Litestar backend
|
|
20
|
+
apiProxy: `http://localhost:${LITESTAR_PORT}`,
|
|
21
|
+
apiPrefix: "/api",
|
|
22
|
+
{% if enable_types %}
|
|
23
|
+
types: {
|
|
24
|
+
enabled: true,
|
|
25
|
+
output: "src/lib/generated/api",
|
|
26
|
+
},
|
|
27
|
+
{% endif %}
|
|
28
|
+
}),
|
|
29
|
+
sveltekit(),
|
|
30
|
+
],
|
|
31
|
+
});
|
|
@@ -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,28 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { ref } from "vue";
|
|
3
|
+
|
|
4
|
+
const count = ref(0);
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<template>
|
|
8
|
+
<div class="app">
|
|
9
|
+
<h1>{{ "{{ project_name }}" }}</h1>
|
|
10
|
+
<p>Vue 3 + Litestar + Vite</p>
|
|
11
|
+
<div class="card">
|
|
12
|
+
<button type="button" @click="count++">count is {{ "{{ count }}" }}</button>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<style scoped>
|
|
18
|
+
.app {
|
|
19
|
+
max-width: 1280px;
|
|
20
|
+
margin: 0 auto;
|
|
21
|
+
padding: 2rem;
|
|
22
|
+
text-align: center;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.card {
|
|
26
|
+
padding: 2em;
|
|
27
|
+
}
|
|
28
|
+
</style>
|