Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ec4562e5e
|
||
|
|
56e3f2e272
|
||
|
|
35737b5b5f
|
||
|
|
f3afc0917e
|
||
|
|
d792eb1d1d
|
||
|
|
275b92eec0 | ||
|
|
38edb64728
|
Submodule
+1
Submodule .devcontainer added at 42cebf91d5
@@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "luke-else.co.uk",
|
|
||||||
"image": "git.luke-else.co.uk/luke-else/lab:latest",
|
|
||||||
"remoteUser": "dev",
|
|
||||||
"customizations": {
|
|
||||||
"vscode": {
|
|
||||||
"settings": {
|
|
||||||
"terminal.integrated.defaultProfile.linux": "zsh"
|
|
||||||
},
|
|
||||||
"extensions": [
|
|
||||||
"ms-azuretools.vscode-docker",
|
|
||||||
"ms-vscode-remote.remote-containers",
|
|
||||||
"svelte.svelte-vscode"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"postCreateCommand": "pnpm install"
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
[submodule ".devcontainer"]
|
||||||
|
path = .devcontainer
|
||||||
|
url = ssh://git@git.luke-else.co.uk:222/luke-else/.devcontainer
|
||||||
|
branch = svelte
|
||||||
@@ -13,6 +13,7 @@ FROM git.luke-else.co.uk/luke-else/nodejs:latest AS run
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=build /app/package.json ./package.json
|
COPY --from=build /app/package.json ./package.json
|
||||||
|
COPY --from=build /app/pnpm-workspace.yaml ./pnpm-workspace.yaml
|
||||||
COPY --from=build /app/.npmrc ./.npmrc
|
COPY --from=build /app/.npmrc ./.npmrc
|
||||||
COPY --from=build /app/build ./build
|
COPY --from=build /app/build ./build
|
||||||
RUN pnpm install --prod
|
RUN pnpm install --prod
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
allowBuilds:
|
||||||
|
'@parcel/watcher': true
|
||||||
|
'@tailwindcss/oxide': true
|
||||||
|
esbuild: true
|
||||||
+17
-27
@@ -1,31 +1,21 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta
|
|
||||||
name="description"
|
|
||||||
content="Luke Else - Software Developer at Thales UK. I specialise in developing distributed systems in C++ using highly scalable internal frameworks. I also develop backend and system applications in my spare time using both Svelte, Rust and C++. Feel free to check my work out at https://git.luke-else.co.uk."
|
|
||||||
/>
|
|
||||||
<meta name="author" content="Luke Else (mail@luke-else.co.uk)" />
|
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css"
|
|
||||||
/>
|
|
||||||
<meta name="viewport" content="width=device-width" />
|
|
||||||
<script
|
|
||||||
async
|
|
||||||
src="https://tracking.luke-else.co.uk/tracker.js"
|
|
||||||
data-ackee-server="https://tracking.luke-else.co.uk"
|
|
||||||
data-ackee-domain-id="6c59ab88-dc6d-4d53-9831-0d6bff919dcd"
|
|
||||||
data-ackee-opts='{ "detailed": true }'
|
|
||||||
></script>
|
|
||||||
%sveltekit.head%
|
|
||||||
|
|
||||||
<style></style>
|
<head>
|
||||||
</head>
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description"
|
||||||
|
content="Luke Else - Software Developer at Thales UK. I specialise in developing distributed systems in C++ using highly scalable internal frameworks. I also develop backend and system applications in my spare time using both Svelte, Rust and C++. Feel free to check my work out at https://git.luke-else.co.uk." />
|
||||||
|
<meta name="author" content="Luke Else (mail@luke-else.co.uk)" />
|
||||||
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
%sveltekit.head%
|
||||||
|
|
||||||
<body data-sveltekit-preload-data="hover">
|
<style></style>
|
||||||
<div style="display: contents">%sveltekit.body%</div>
|
</head>
|
||||||
</body>
|
|
||||||
</html>
|
<body data-sveltekit-preload-data="hover">
|
||||||
|
<div style="display: contents">%sveltekit.body%</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user