Compare commits

...

3 Commits

Author SHA1 Message Date
58234c431f gitlab -> git 2026-02-07 19:57:42 +01:00
2ffce29593 CV updated 2026-02-05 23:27:40 +01:00
a5e95d6298 Move views to backend dir 2026-02-05 22:25:30 +01:00
9 changed files with 17 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
import express from "express";
import userController from 'controllers/userController';
import userController from 'backend/controllers/userController';
import checkAuthenticated from 'backend/miscellaneous/checkAuthenticated';
const router = express.Router();

View File

@@ -56,8 +56,8 @@
{
"title": "HW Developer",
"company": "Spica International",
"time": "17/03/2025 - CURRENT",
"des": "Working on access menegment systems."
"time": "17/03/2025 - 01/08/2025",
"des": "Worked on access menegment systems. Programed integrated devices, based on Buildroot using c++ and python web server."
},
{
"title": "Backend/Frontend",

View File

@@ -114,7 +114,7 @@
<div class="social_container bd-grid">
<a href="{{git_link}}" target="_blank" class="social_link">
<i class="fa-brands fa-gitlab social_icon"></i>{{git_link}}
<i class="fa-brands fa-git social_icon"></i>{{git_link}}
</a>
<a href="{{instagram_link}}" target="_blank" class="social_link">
<i class="fa-brands fa-instagram social_icon"></i>{{instagram_handle}}

View File

@@ -1,7 +1,7 @@
mkdir output
hugo
hugo -d output/public --minify
bun build ./backend/app.ts --outfile=output/app.js --target=bun --minify
bun build ./frontend/list/list.tsx --outfile=public/assets/build/list.js --minify
bun build ./frontend/list/list.tsx --outfile=output/public/assets/build/list.js --minify
cp -r views/ output/
cp -r public/ output/
cp -r backend/views/ output/
rm -rf resources

View File

@@ -1,16 +1,17 @@
{
"lockfileVersion": 1,
"configVersion": 0,
"workspaces": {
"": {
"name": "web",
"dependencies": {
"@types/express": "latest",
"@types/morgan": "latest",
"bun-types": "latest",
"express": "latest",
"hbs": "latest",
"morgan": "latest",
"typescript": "latest",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"bun-types": "^1.2.22",
"express": "^5.1.0",
"hbs": "^4.2.0",
"morgan": "~1.10.1",
"typescript": "^5.9.2",
},
},
},