stack-service-base 0.0.99 → 0.0.100
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.
- checksums.yaml +4 -4
- data/lib/stack-service-base/command_init.rb +5 -3
- data/lib/stack-service-base/frontend_template/github/.github/workflows/main.yml +19 -0
- data/lib/stack-service-base/frontend_template/github/docker/docker-compose.yml +15 -0
- data/lib/stack-service-base/frontend_template/gitlab/.gitlab-ci.yml +48 -0
- data/lib/stack-service-base/frontend_template/gitlab/docker/Dockerfile.build +36 -0
- data/lib/stack-service-base/frontend_template/gitlab/docker/docker-compose.yml +15 -0
- data/lib/stack-service-base/frontend_template/gitlab/docker/local_build.sh +10 -0
- data/lib/stack-service-base/frontend_template/gitlab-c/.gitlab-ci.yml +24 -0
- data/lib/stack-service-base/frontend_template/gitlab-c/docker/Dockerfile.build +17 -0
- data/lib/stack-service-base/frontend_template/gitlab-c/docker/docker-compose.yml +15 -0
- data/lib/stack-service-base/frontend_template/gitlab-c/docker/local_build.sh +11 -0
- data/lib/stack-service-base/frontend_template/home/.editorconfig +12 -0
- data/lib/stack-service-base/frontend_template/home/.gitattributes +4 -0
- data/lib/stack-service-base/frontend_template/home/.gitignore +17 -0
- data/lib/stack-service-base/frontend_template/home/AGENTS.md +3 -0
- data/lib/stack-service-base/frontend_template/home/README.md +68 -0
- data/lib/stack-service-base/frontend_template/home/docker/.env +3 -0
- data/lib/stack-service-base/frontend_template/home/docker/frontend/15-runtime-settings.envsh +90 -0
- data/lib/stack-service-base/frontend_template/home/docker/frontend/40-path-prefix-settings.sh +30 -0
- data/lib/stack-service-base/frontend_template/home/docker/frontend/45-runtime-config-settings.sh +24 -0
- data/lib/stack-service-base/frontend_template/home/docker/frontend/Dockerfile +46 -0
- data/lib/stack-service-base/frontend_template/home/docker/frontend/nginx.conf.template +75 -0
- data/lib/stack-service-base/frontend_template/home/src/.dockerignore +9 -0
- data/lib/stack-service-base/frontend_template/home/src/.env.example +7 -0
- data/lib/stack-service-base/frontend_template/home/src/.version +1 -0
- data/lib/stack-service-base/frontend_template/home/src/app/main.ts +4 -0
- data/lib/stack-service-base/frontend_template/home/src/app/runtime-config.ts +22 -0
- data/lib/stack-service-base/frontend_template/home/src/app/runtime-config.types.ts +5 -0
- data/lib/stack-service-base/frontend_template/home/src/app/style.css +82 -0
- data/lib/stack-service-base/frontend_template/home/src/app/vite-env.d.ts +1 -0
- data/lib/stack-service-base/frontend_template/home/src/eslint.config.js +34 -0
- data/lib/stack-service-base/frontend_template/home/src/index.html +24 -0
- data/lib/stack-service-base/frontend_template/home/src/package-lock.json +2812 -0
- data/lib/stack-service-base/frontend_template/home/src/package.json +30 -0
- data/lib/stack-service-base/frontend_template/home/src/proxy.config.json +8 -0
- data/lib/stack-service-base/frontend_template/home/src/public/runtime-config.js +1 -0
- data/lib/stack-service-base/frontend_template/home/src/tests/build-proxy.test.ts +28 -0
- data/lib/stack-service-base/frontend_template/home/src/tests/javascript-support.test.js +23 -0
- data/lib/stack-service-base/frontend_template/home/src/tests/path-prefix.test.ts +17 -0
- data/lib/stack-service-base/frontend_template/home/src/tests/runtime-config.test.ts +22 -0
- data/lib/stack-service-base/frontend_template/home/src/tests/vite-config.test.ts +16 -0
- data/lib/stack-service-base/frontend_template/home/src/tools/vite/build-proxy.ts +62 -0
- data/lib/stack-service-base/frontend_template/home/src/tools/vite/path-prefix.ts +27 -0
- data/lib/stack-service-base/frontend_template/home/src/tools/vite/runtime-config-dev-plugin.ts +27 -0
- data/lib/stack-service-base/frontend_template/home/src/tools/vite/runtime-config.ts +10 -0
- data/lib/stack-service-base/frontend_template/home/src/tsconfig.json +27 -0
- data/lib/stack-service-base/frontend_template/home/src/vite.config.ts +40 -0
- data/lib/stack-service-base/version.rb +1 -1
- metadata +47 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { normalizePathPrefix } from '../tools/vite/path-prefix';
|
|
2
|
+
import type { RuntimeConfig } from './runtime-config.types';
|
|
3
|
+
|
|
4
|
+
declare global {
|
|
5
|
+
interface Window {
|
|
6
|
+
__APP_CONFIG__?: RuntimeConfig;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const runtimeConfig = window.__APP_CONFIG__ ?? {};
|
|
11
|
+
const pathPrefix = normalizePathPrefix(runtimeConfig.PATH_PREFIX);
|
|
12
|
+
|
|
13
|
+
export const environment = Object.freeze({
|
|
14
|
+
serviceName: '${service_name}',
|
|
15
|
+
pathPrefix,
|
|
16
|
+
apiBaseUrl: runtimeConfig.API_BASE_URL?.trim() || joinPath(pathPrefix, 'api'),
|
|
17
|
+
logLevel: runtimeConfig.LOG_LEVEL?.trim() || 'info'
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
function joinPath(prefix: string, path: string): string {
|
|
21
|
+
return `${prefix}/${path}`.replace(/\/+/gu, '/');
|
|
22
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-background: #f3f4f6;
|
|
3
|
+
--color-text: #1f2937;
|
|
4
|
+
--color-muted: #6b7280;
|
|
5
|
+
--color-running: #166534;
|
|
6
|
+
--color-running-indicator: #22c55e;
|
|
7
|
+
--space-1: 4px;
|
|
8
|
+
--space-2: 8px;
|
|
9
|
+
--space-4: 16px;
|
|
10
|
+
--space-6: 24px;
|
|
11
|
+
--space-8: 32px;
|
|
12
|
+
|
|
13
|
+
color: var(--color-text);
|
|
14
|
+
background: var(--color-background);
|
|
15
|
+
font-family:
|
|
16
|
+
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
17
|
+
font-synthesis: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
* {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
body {
|
|
25
|
+
display: grid;
|
|
26
|
+
min-width: 320px;
|
|
27
|
+
min-height: 100vh;
|
|
28
|
+
margin: 0;
|
|
29
|
+
place-items: center;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.page {
|
|
33
|
+
width: min(640px, calc(100% - var(--space-8)));
|
|
34
|
+
padding: var(--space-8) 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.page__header {
|
|
38
|
+
margin-bottom: var(--space-6);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
h1,
|
|
42
|
+
p {
|
|
43
|
+
margin: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
h1 {
|
|
47
|
+
margin-top: var(--space-1);
|
|
48
|
+
font-size: clamp(28px, 5vw, 40px);
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
letter-spacing: -0.025em;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.eyebrow {
|
|
54
|
+
color: var(--color-muted);
|
|
55
|
+
font-size: 12px;
|
|
56
|
+
font-weight: 600;
|
|
57
|
+
letter-spacing: 0.08em;
|
|
58
|
+
text-transform: uppercase;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.status {
|
|
62
|
+
display: inline-flex;
|
|
63
|
+
align-items: center;
|
|
64
|
+
gap: var(--space-2);
|
|
65
|
+
color: var(--color-running);
|
|
66
|
+
font-size: 14px;
|
|
67
|
+
font-weight: 600;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.status__indicator {
|
|
71
|
+
width: var(--space-2);
|
|
72
|
+
height: var(--space-2);
|
|
73
|
+
border-radius: 50%;
|
|
74
|
+
background: var(--color-running-indicator);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@media (max-width: 640px) {
|
|
78
|
+
.page {
|
|
79
|
+
width: calc(100% - var(--space-6));
|
|
80
|
+
padding: var(--space-6) 0;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import js from '@eslint/js';
|
|
2
|
+
import globals from 'globals';
|
|
3
|
+
import tseslint from 'typescript-eslint';
|
|
4
|
+
|
|
5
|
+
export default tseslint.config(
|
|
6
|
+
{
|
|
7
|
+
ignores: ['dist/**', 'node_modules/**']
|
|
8
|
+
},
|
|
9
|
+
js.configs.recommended,
|
|
10
|
+
...tseslint.configs.recommended,
|
|
11
|
+
{
|
|
12
|
+
files: ['**/*.ts'],
|
|
13
|
+
rules: {
|
|
14
|
+
'@typescript-eslint/no-explicit-any': 'error',
|
|
15
|
+
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }]
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
files: ['app/**/*.{js,ts}', 'public/**/*.js'],
|
|
20
|
+
languageOptions: {
|
|
21
|
+
ecmaVersion: 2022,
|
|
22
|
+
sourceType: 'module',
|
|
23
|
+
globals: globals.browser
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
files: ['tests/**/*.{js,ts}', 'tools/**/*.{js,ts}', '*.config.{js,ts}'],
|
|
28
|
+
languageOptions: {
|
|
29
|
+
ecmaVersion: 2022,
|
|
30
|
+
sourceType: 'module',
|
|
31
|
+
globals: globals.node
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
);
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
<meta name="color-scheme" content="light" />
|
|
7
|
+
<title>${service_name}</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<main class="page">
|
|
11
|
+
<header class="page__header">
|
|
12
|
+
<p class="eyebrow">Frontend service</p>
|
|
13
|
+
<h1>${service_name}</h1>
|
|
14
|
+
</header>
|
|
15
|
+
|
|
16
|
+
<p class="status" role="status">
|
|
17
|
+
<span class="status__indicator" aria-hidden="true"></span>
|
|
18
|
+
Running
|
|
19
|
+
</p>
|
|
20
|
+
</main>
|
|
21
|
+
|
|
22
|
+
<script type="module" src="/app/main.ts"></script>
|
|
23
|
+
</body>
|
|
24
|
+
</html>
|