Compare commits

...
12 Commits
Author SHA1 Message Date
luke-else 0ec4562e5e fix: Added pnpm-workspace to release stage of docker file
Build and Push Development Docker Image / build-and-push (push) Successful in 3m43s
2026-08-15 20:02:36 +01:00
luke-else 56e3f2e272 feat: Updated submodule
Build and Push Development Docker Image / build-and-push (push) Failing after 3m20s
2026-08-15 19:42:37 +01:00
luke-else 35737b5b5f feat: #58 removed tracking scripts
Build and Push Development Docker Image / build-and-push (push) Failing after 4m51s
2026-08-15 19:39:28 +01:00
luke-else f3afc0917e feat: Added svelte devcontainer
Build and Push Latest Docker Image / build-and-push (push) Successful in 1m0s
Build and Push Development Docker Image / build-and-push (push) Successful in 17s
2026-03-30 16:19:55 +01:00
luke-else d792eb1d1d feat: Removed devcontainer folder
Build and Push Latest Docker Image / build-and-push (push) Has been cancelled
2026-03-30 16:17:56 +01:00
luke-else 275b92eec0 Merge pull request 'feat: Updated devcontainer' (#57) from development into main
Build and Push Latest Docker Image / build-and-push (push) Successful in 18s
Reviewed-on: #57
2025-10-21 21:49:39 +00:00
luke-else 38edb64728 feat: Updated devcontainer
Build and Push Development Docker Image / build-and-push (push) Successful in 1m4s
2025-10-21 22:44:32 +01:00
luke-else 1070662164 Merge pull request 'feature/devcontainer' (#55) from feature/devcontainer into main
Build and Push Latest Docker Image / build-and-push (push) Successful in 1m4s
Build and Push Development Docker Image / build-and-push (push) Successful in 17s
Reviewed-on: #55
2025-09-26 09:18:23 +00:00
luke-else 9a36a46ad1 chore: Removed run command from devcontainer 2025-09-25 23:34:11 +01:00
luke-else 558bca7f56 fix: Linting 2025-09-25 23:29:30 +01:00
luke-else bc7099d627 chore: Updated comments 2025-09-25 23:13:39 +01:00
luke-else f71b054ae5 feat: Added dev-container 2025-09-25 22:03:37 +01:00
27 changed files with 805 additions and 803 deletions
Submodule
+1
Submodule .devcontainer added at 42cebf91d5
+1
View File
@@ -1,5 +1,6 @@
.DS_Store .DS_Store
node_modules node_modules
.pnpm-store
/build /build
/.svelte-kit /.svelte-kit
/package /package
+4
View File
@@ -0,0 +1,4 @@
[submodule ".devcontainer"]
path = .devcontainer
url = ssh://git@git.luke-else.co.uk:222/luke-else/.devcontainer
branch = svelte
+1
View File
@@ -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
+4
View File
@@ -0,0 +1,4 @@
allowBuilds:
'@parcel/watcher': true
'@tailwindcss/oxide': true
esbuild: true
+5 -15
View File
@@ -1,25 +1,14 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta <meta name="description"
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." />
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)" /> <meta name="author" content="Luke Else (mail@luke-else.co.uk)" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" /> <link rel="icon" href="%sveltekit.assets%/favicon.png" />
<link <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css" />
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css"
/>
<meta name="viewport" content="width=device-width" /> <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% %sveltekit.head%
<style></style> <style></style>
@@ -28,4 +17,5 @@
<body data-sveltekit-preload-data="hover"> <body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div> <div style="display: contents">%sveltekit.body%</div>
</body> </body>
</html> </html>
+2 -1
View File
@@ -47,7 +47,7 @@
</Card> </Card>
</Section> </Section>
<!-- SKills --> <!-- Skills -->
<Section label="[Skills]"> <Section label="[Skills]">
<GridGallery> <GridGallery>
{#each info.skills as skill} {#each info.skills as skill}
@@ -69,6 +69,7 @@
</GridGallery> </GridGallery>
</Section> </Section>
<!-- Experience -->
<Section label="[Experience]"> <Section label="[Experience]">
<Timeline timelineData={info.timeline} /> <Timeline timelineData={info.timeline} />
</Section> </Section>