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
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
@@ -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
|
+
<app-root></app-root>
|
|
10
|
+
<script type="module" src="/{{ resource_dir }}/main.ts"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineConfig } from "@hey-api/openapi-ts";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
input: "./{{ resource_dir }}/generated/openapi.json",
|
|
5
|
+
output: "./{{ resource_dir }}/generated/api",
|
|
6
|
+
plugins: [
|
|
7
|
+
"@hey-api/typescript",
|
|
8
|
+
"@hey-api/schemas",
|
|
9
|
+
{
|
|
10
|
+
name: "@hey-api/sdk",
|
|
11
|
+
asClass: true,
|
|
12
|
+
},
|
|
13
|
+
"@hey-api/client-angular",
|
|
14
|
+
{%- if generate_zod %}
|
|
15
|
+
"zod",
|
|
16
|
+
{%- endif %}
|
|
17
|
+
],
|
|
18
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "{{ project_name }}",
|
|
3
|
+
"private": true,
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite",
|
|
7
|
+
"build": "vite build",
|
|
8
|
+
"preview": "vite preview",
|
|
9
|
+
"serve": "vite preview",
|
|
10
|
+
"watch": "npm run serve",
|
|
11
|
+
"update": "npm update"{% if generate_client %},
|
|
12
|
+
"generate-types": "openapi-ts"{% endif %}
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
{%- for dep in dependencies %}
|
|
16
|
+
"{{ dep }}": "latest"{% if not loop.last or generate_zod %},{% endif %}
|
|
17
|
+
{%- endfor %}
|
|
18
|
+
{%- if generate_zod %}
|
|
19
|
+
"zod": "^4.1.13"
|
|
20
|
+
{%- endif %}
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
{%- for dep in dev_dependencies %}
|
|
24
|
+
"{{ dep }}": "latest",
|
|
25
|
+
{%- endfor %}
|
|
26
|
+
{%- if use_tailwind %}
|
|
27
|
+
"@tailwindcss/vite": "^4.1.17",
|
|
28
|
+
"tailwindcss": "^4.1.17",
|
|
29
|
+
{%- endif %}
|
|
30
|
+
{%- if generate_client %}
|
|
31
|
+
"@hey-api/openapi-ts": "^0.88.0",
|
|
32
|
+
{%- endif %}
|
|
33
|
+
"litestar-vite-plugin": "latest",
|
|
34
|
+
"vite": "^7.2.6"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<main></main>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { bootstrapApplication } from "@angular/platform-browser";
|
|
2
|
+
|
|
3
|
+
import { AppComponent } from "./app/app.component";
|
|
4
|
+
import { appConfig } from "./app/app.config";
|
|
5
|
+
{% if use_tailwind %}import "./styles.css";{% endif %}
|
|
6
|
+
|
|
7
|
+
bootstrapApplication(AppComponent, appConfig).catch((err) =>
|
|
8
|
+
console.error("Bootstrap failed:", err)
|
|
9
|
+
);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compileOnSave": false,
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"baseUrl": "./",
|
|
6
|
+
"outDir": "./dist/out-tsc",
|
|
7
|
+
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
13
|
+
"sourceMap": true,
|
|
14
|
+
"declaration": false,
|
|
15
|
+
"downlevelIteration": true,
|
|
16
|
+
"experimentalDecorators": true,
|
|
17
|
+
"moduleResolution": "bundler",
|
|
18
|
+
"importHelpers": true,
|
|
19
|
+
"noEmit": false,
|
|
20
|
+
"target": "ES2022",
|
|
21
|
+
"module": "ESNext",
|
|
22
|
+
"lib": ["ES2022", "dom"],
|
|
23
|
+
"skipLibCheck": true
|
|
24
|
+
},
|
|
25
|
+
"angularCompilerOptions": {
|
|
26
|
+
"enableI18nLegacyMessageIdFormat": false,
|
|
27
|
+
"strictInjectionParameters": true,
|
|
28
|
+
"strictInputAccessModifiers": true,
|
|
29
|
+
"strictTemplates": true
|
|
30
|
+
},
|
|
31
|
+
"files": ["{{ resource_dir }}/main.ts"],
|
|
32
|
+
"include": ["{{ resource_dir }}/**/*.ts"],
|
|
33
|
+
"exclude": ["{{ resource_dir }}/generated/**"]
|
|
34
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"useDefineForClassFields": false,
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"moduleResolution": "Bundler",
|
|
7
|
+
"types": ["vite/client"],
|
|
8
|
+
"allowImportingTsExtensions": true,
|
|
9
|
+
"noEmit": true,
|
|
10
|
+
"strict": true,
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
"baseUrl": ".",
|
|
15
|
+
"paths": {
|
|
16
|
+
"@/*": ["./{{ resource_dir }}/*"]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"include": ["{{ resource_dir }}/**/*.ts"]
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import angular from "@analogjs/vite-plugin-angular";
|
|
2
|
+
{% if use_tailwind %}import tailwindcss from "@tailwindcss/vite";
|
|
3
|
+
{% endif %}import litestar from "litestar-vite-plugin";
|
|
4
|
+
import { defineConfig } from "vite";
|
|
5
|
+
|
|
6
|
+
export default defineConfig({
|
|
7
|
+
resolve: {
|
|
8
|
+
mainFields: ["module"],
|
|
9
|
+
alias: {
|
|
10
|
+
"@": "/{{ resource_dir }}",
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
plugins: [
|
|
14
|
+
// Angular plugin must be first
|
|
15
|
+
angular(),
|
|
16
|
+
{% if use_tailwind %} tailwindcss(),
|
|
17
|
+
{% endif %} litestar({
|
|
18
|
+
input: ["{{ resource_dir }}/main.ts"{% if use_tailwind %}, "{{ resource_dir }}/styles.css"{% endif %}],
|
|
19
|
+
}),
|
|
20
|
+
],
|
|
21
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
+
"version": 1,
|
|
4
|
+
"projects": {
|
|
5
|
+
"{{ project_name }}": {
|
|
6
|
+
"projectType": "application",
|
|
7
|
+
"root": "",
|
|
8
|
+
"sourceRoot": "src",
|
|
9
|
+
"prefix": "app",
|
|
10
|
+
"architect": {
|
|
11
|
+
"build": {
|
|
12
|
+
"builder": "@angular-devkit/build-angular:application",
|
|
13
|
+
"options": {
|
|
14
|
+
"outputPath": "dist",
|
|
15
|
+
"index": "src/index.html",
|
|
16
|
+
"browser": "src/main.ts",
|
|
17
|
+
"tsConfig": "tsconfig.app.json",
|
|
18
|
+
"assets": [
|
|
19
|
+
{ "glob": "**/*", "input": "src/assets", "output": "/assets" },
|
|
20
|
+
{ "glob": "**/*", "input": "{{ resource_dir }}/generated", "output": "/{{ resource_dir }}/generated" }
|
|
21
|
+
],
|
|
22
|
+
"styles": ["src/styles.css"],
|
|
23
|
+
"scripts": []
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"serve": {
|
|
27
|
+
"builder": "@angular-devkit/build-angular:dev-server",
|
|
28
|
+
"options": {
|
|
29
|
+
"buildTarget": "{{ project_name }}:build",
|
|
30
|
+
"proxyConfig": "proxy.conf.json"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineConfig } from "@hey-api/openapi-ts";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
input: "./{{ resource_dir }}/generated/openapi.json",
|
|
5
|
+
output: "./{{ resource_dir }}/generated/api",
|
|
6
|
+
plugins: [
|
|
7
|
+
"@hey-api/typescript",
|
|
8
|
+
"@hey-api/schemas",
|
|
9
|
+
{
|
|
10
|
+
name: "@hey-api/sdk",
|
|
11
|
+
asClass: true,
|
|
12
|
+
},
|
|
13
|
+
"@hey-api/client-angular",
|
|
14
|
+
{%- if generate_zod %}
|
|
15
|
+
"zod",
|
|
16
|
+
{%- endif %}
|
|
17
|
+
],
|
|
18
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "{{ project_name }}",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"ng": "ng",
|
|
8
|
+
"start": "ng serve --proxy-config proxy.conf.json",
|
|
9
|
+
"build": "ng build",
|
|
10
|
+
"serve": "npx serve dist/{{ project_name }}/browser",
|
|
11
|
+
"watch": "npm run serve",
|
|
12
|
+
"update": "npm update"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
{%- for dep in dependencies %}
|
|
16
|
+
"{{ dep }}": "latest"{% if not loop.last %},{% endif %}
|
|
17
|
+
{%- endfor %}
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
{%- for dep in dev_dependencies %}
|
|
21
|
+
"{{ dep }}": "latest",
|
|
22
|
+
{%- endfor %}
|
|
23
|
+
{%- if generate_client %}
|
|
24
|
+
"@hey-api/openapi-ts": "^0.88.0",
|
|
25
|
+
{%- endif %}
|
|
26
|
+
"@types/jasmine": "latest"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"/api": {
|
|
3
|
+
"target": "http://localhost:8000",
|
|
4
|
+
"secure": false,
|
|
5
|
+
"changeOrigin": true,
|
|
6
|
+
"ws": true
|
|
7
|
+
},
|
|
8
|
+
"/openapi.json": {
|
|
9
|
+
"target": "http://localhost:8000",
|
|
10
|
+
"secure": false,
|
|
11
|
+
"changeOrigin": true
|
|
12
|
+
},
|
|
13
|
+
"/static": {
|
|
14
|
+
"target": "http://localhost:8000",
|
|
15
|
+
"secure": false,
|
|
16
|
+
"changeOrigin": true
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<main></main>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<title>{{ project_name }}</title>
|
|
6
|
+
<base href="/" />
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<app-root></app-root>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "./dist/out-tsc/app",
|
|
5
|
+
"types": []
|
|
6
|
+
},
|
|
7
|
+
"files": ["src/main.ts"],
|
|
8
|
+
"include": ["src/**/*.ts"],
|
|
9
|
+
"exclude": ["src/**/*.spec.ts", "src/generated/**"],
|
|
10
|
+
"angularCompilerOptions": {
|
|
11
|
+
"enableI18nLegacyMessageIdFormat": false,
|
|
12
|
+
"strictInjectionParameters": true,
|
|
13
|
+
"strictInputAccessModifiers": true,
|
|
14
|
+
"strictTemplates": true
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compileOnSave": false,
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"baseUrl": "./",
|
|
5
|
+
"outDir": "./dist/out-tsc",
|
|
6
|
+
"sourceMap": true,
|
|
7
|
+
"declaration": false,
|
|
8
|
+
"downlevelIteration": true,
|
|
9
|
+
"experimentalDecorators": true,
|
|
10
|
+
"module": "ESNext",
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"resolveJsonModule": true,
|
|
13
|
+
"allowSyntheticDefaultImports": true,
|
|
14
|
+
"target": "ES2022",
|
|
15
|
+
"useDefineForClassFields": false,
|
|
16
|
+
"lib": ["ES2022", "dom"],
|
|
17
|
+
"types": ["node"],
|
|
18
|
+
"forceConsistentCasingInFileNames": true,
|
|
19
|
+
"strict": true,
|
|
20
|
+
"noImplicitOverride": true,
|
|
21
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
22
|
+
"noImplicitReturns": true,
|
|
23
|
+
"noFallthroughCasesInSwitch": true,
|
|
24
|
+
"skipLibCheck": true
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { defineConfig } from "astro/config";
|
|
2
|
+
import litestar from "litestar-vite-plugin/astro";
|
|
3
|
+
{% if use_tailwind %}
|
|
4
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
5
|
+
{% endif %}
|
|
6
|
+
|
|
7
|
+
// Litestar manages the dev server port via VITE_PORT and runtime config.
|
|
8
|
+
// The Astro integration reads the port automatically - no hardcoding needed.
|
|
9
|
+
// LITESTAR_PORT is the backend API server port (default {{ litestar_port }}).
|
|
10
|
+
const LITESTAR_PORT = process.env.LITESTAR_PORT ?? "{{ litestar_port }}";
|
|
11
|
+
|
|
12
|
+
export default defineConfig({
|
|
13
|
+
integrations: [
|
|
14
|
+
litestar({
|
|
15
|
+
// API proxy points to the Litestar backend
|
|
16
|
+
apiProxy: `http://localhost:${LITESTAR_PORT}`,
|
|
17
|
+
apiPrefix: "/api",
|
|
18
|
+
{% if enable_types %}
|
|
19
|
+
typesPath: "./{{ resource_dir }}/generated",
|
|
20
|
+
{% endif %}
|
|
21
|
+
}),
|
|
22
|
+
],
|
|
23
|
+
{% if use_tailwind %}
|
|
24
|
+
vite: {
|
|
25
|
+
plugins: [tailwindcss()],
|
|
26
|
+
},
|
|
27
|
+
{% endif %}
|
|
28
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineConfig } from "@hey-api/openapi-ts";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
input: "./{{ resource_dir }}/generated/openapi.json",
|
|
5
|
+
output: "./{{ resource_dir }}/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,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
interface Props {
|
|
3
|
+
title: string;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
const { title } = Astro.props;
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!DOCTYPE html>
|
|
10
|
+
<html lang="en">
|
|
11
|
+
<head>
|
|
12
|
+
<meta charset="UTF-8" />
|
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
14
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
15
|
+
<title>{title}</title>
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<slot />
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
|
21
|
+
|
|
22
|
+
<style is:global>
|
|
23
|
+
:root {
|
|
24
|
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
25
|
+
line-height: 1.5;
|
|
26
|
+
font-weight: 400;
|
|
27
|
+
|
|
28
|
+
color-scheme: light dark;
|
|
29
|
+
color: rgba(255, 255, 255, 0.87);
|
|
30
|
+
background-color: #242424;
|
|
31
|
+
|
|
32
|
+
font-synthesis: none;
|
|
33
|
+
text-rendering: optimizeLegibility;
|
|
34
|
+
-webkit-font-smoothing: antialiased;
|
|
35
|
+
-moz-osx-font-smoothing: grayscale;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
button {
|
|
39
|
+
border-radius: 8px;
|
|
40
|
+
border: 1px solid transparent;
|
|
41
|
+
padding: 0.6em 1.2em;
|
|
42
|
+
font-size: 1em;
|
|
43
|
+
font-weight: 500;
|
|
44
|
+
font-family: inherit;
|
|
45
|
+
background-color: #1a1a1a;
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
transition: border-color 0.25s;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
button:hover {
|
|
51
|
+
border-color: #ff5d01;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@media (prefers-color-scheme: light) {
|
|
55
|
+
:root {
|
|
56
|
+
color: #213547;
|
|
57
|
+
background-color: #ffffff;
|
|
58
|
+
}
|
|
59
|
+
button {
|
|
60
|
+
background-color: #f9f9f9;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
</style>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from "../layouts/Layout.astro";
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<Layout title="{{ project_name }}">
|
|
6
|
+
<main class="app">
|
|
7
|
+
<h1>{{ project_name }}</h1>
|
|
8
|
+
<p>Astro + Litestar</p>
|
|
9
|
+
<div class="card">
|
|
10
|
+
<button id="counter">count is 0</button>
|
|
11
|
+
</div>
|
|
12
|
+
</main>
|
|
13
|
+
</Layout>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
const button = document.getElementById("counter");
|
|
17
|
+
let count = 0;
|
|
18
|
+
|
|
19
|
+
button?.addEventListener("click", () => {
|
|
20
|
+
count += 1;
|
|
21
|
+
button.textContent = `count is ${count}`;
|
|
22
|
+
});
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<style>
|
|
26
|
+
.app {
|
|
27
|
+
max-width: 1280px;
|
|
28
|
+
margin: 0 auto;
|
|
29
|
+
padding: 2rem;
|
|
30
|
+
text-align: center;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.card {
|
|
34
|
+
padding: 2em;
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Global styles are included in Layout.astro */
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# Build output
|
|
5
|
+
{{ bundle_dir }}/
|
|
6
|
+
dist/
|
|
7
|
+
|
|
8
|
+
# Vite
|
|
9
|
+
*.local
|
|
10
|
+
.vite/
|
|
11
|
+
|
|
12
|
+
# TypeScript
|
|
13
|
+
*.tsbuildinfo
|
|
14
|
+
|
|
15
|
+
# Generated types
|
|
16
|
+
{{ resource_dir }}/generated/
|
|
17
|
+
|
|
18
|
+
# IDE
|
|
19
|
+
.idea/
|
|
20
|
+
.vscode/
|
|
21
|
+
*.swp
|
|
22
|
+
*.swo
|
|
23
|
+
|
|
24
|
+
# OS
|
|
25
|
+
.DS_Store
|
|
26
|
+
Thumbs.db
|
|
27
|
+
|
|
28
|
+
# Logs
|
|
29
|
+
logs/
|
|
30
|
+
*.log
|
|
31
|
+
npm-debug.log*
|
|
32
|
+
|
|
33
|
+
# Environment
|
|
34
|
+
.env
|
|
35
|
+
.env.local
|
|
36
|
+
.env.*.local
|
|
37
|
+
|
|
38
|
+
# Python
|
|
39
|
+
__pycache__/
|
|
40
|
+
*.py[cod]
|
|
41
|
+
.venv/
|
|
42
|
+
venv/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineConfig } from "@hey-api/openapi-ts";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
input: "./{{ resource_dir }}/generated/openapi.json",
|
|
5
|
+
output: "./{{ resource_dir }}/generated/api",
|
|
6
|
+
plugins: [
|
|
7
|
+
"@hey-api/typescript",
|
|
8
|
+
"@hey-api/schemas",
|
|
9
|
+
"@hey-api/sdk",
|
|
10
|
+
"@hey-api/client-axios",
|
|
11
|
+
{%- if generate_zod %}
|
|
12
|
+
"zod",
|
|
13
|
+
{%- endif %}
|
|
14
|
+
],
|
|
15
|
+
});
|