refactor: Move Astro to root, use PORT env (default 80), allow all hosts

- Move Astro files from dealplustech-astro/ to project root
- Update Dockerfile: PORT environment variable (default 80)
- Add vite.config.ts with allowedHosts: true
- Matches nixpacks behavior for Easypanel deployment
- No hardcoded ports or domains
This commit is contained in:
Kunthawat Greethong
2026-03-03 11:40:50 +07:00
parent f972f68875
commit 443c3377e2
10383 changed files with 4019 additions and 19183 deletions

61
node_modules/unstorage/drivers/lru-cache.cjs generated vendored Normal file
View File

@@ -0,0 +1,61 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _utils = require("./utils/index.cjs");
var _lruCache = require("lru-cache");
const DRIVER_NAME = "lru-cache";
module.exports = (0, _utils.defineDriver)((opts = {}) => {
const cache = new _lruCache.LRUCache({
max: 1e3,
sizeCalculation: opts.maxSize || opts.maxEntrySize ? (value, key) => {
return key.length + byteLength(value);
} : void 0,
...opts
});
return {
name: DRIVER_NAME,
options: opts,
getInstance: () => cache,
hasItem(key) {
return cache.has(key);
},
getItem(key) {
return cache.get(key) ?? null;
},
getItemRaw(key) {
return cache.get(key) ?? null;
},
setItem(key, value) {
cache.set(key, value);
},
setItemRaw(key, value) {
cache.set(key, value);
},
removeItem(key) {
cache.delete(key);
},
getKeys() {
return [...cache.keys()];
},
clear() {
cache.clear();
},
dispose() {
cache.clear();
}
};
});
function byteLength(value) {
if (typeof Buffer !== "undefined") {
try {
return Buffer.byteLength(value);
} catch {}
}
try {
return typeof value === "string" ? value.length : JSON.stringify(value).length;
} catch {}
return 0;
}