Complete residential site build with Docker Compose & Gitea Actions deployment

This commit is contained in:
CalebLewallen
2026-05-13 17:31:20 -04:00
parent f9c4e13a50
commit 3c22823f72
19354 changed files with 2097331 additions and 0 deletions
@@ -0,0 +1 @@
export {};
+52
View File
@@ -0,0 +1,52 @@
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports", "@vscode/l10n", "vscode-languageserver", "vscode-languageserver/browser", "../languageserver/telemetry", "../languageservice/services/schemaRequestHandler", "../yamlServerInit", "../yamlSettings"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*---------------------------------------------------------------------------------------------
* Copyright (c) Red Hat, Inc. All rights reserved.
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
const l10n = require("@vscode/l10n");
const vscode_languageserver_1 = require("vscode-languageserver");
const browser_1 = require("vscode-languageserver/browser");
const telemetry_1 = require("../languageserver/telemetry");
const schemaRequestHandler_1 = require("../languageservice/services/schemaRequestHandler");
const yamlServerInit_1 = require("../yamlServerInit");
const yamlSettings_1 = require("../yamlSettings");
// eslint-disable-next-line @typescript-eslint/no-namespace
var FSReadFile;
(function (FSReadFile) {
FSReadFile.type = new vscode_languageserver_1.RequestType('fs/readFile');
})(FSReadFile || (FSReadFile = {}));
self.onmessage = (e) => {
const messageReader = new browser_1.BrowserMessageReader(globalThis);
const messageWriter = new browser_1.BrowserMessageWriter(globalThis);
const connection = (0, browser_1.createConnection)(messageReader, messageWriter);
const yamlSettings = new yamlSettings_1.SettingsState();
const fileSystem = {
readFile: (fsPath) => {
return connection.sendRequest(FSReadFile.type, fsPath);
},
};
/**
* Handles schema content requests given the schema URI
* @param uri can be a local file, vscode request, http(s) request or a custom request
*/
const schemaRequestHandlerWrapper = (connection, uri) => {
return (0, schemaRequestHandler_1.schemaRequestHandler)(connection, uri, yamlSettings.workspaceFolders, yamlSettings.workspaceRoot, yamlSettings.useVSCodeContentRequest, fileSystem, true);
};
const schemaRequestService = schemaRequestHandlerWrapper.bind(this, connection);
const telemetry = new telemetry_1.TelemetryImpl(connection);
l10n.config({ contents: e.data.l10nBundle });
new yamlServerInit_1.YAMLServerInit(connection, yamlSettings, schemaRequestHandler_1.workspaceContext, schemaRequestService, telemetry).start();
};
});
//# sourceMappingURL=yamlServerMain.js.map
@@ -0,0 +1 @@
{"version":3,"file":"yamlServerMain.js","sourceRoot":"","sources":["../../../src/webworker/yamlServerMain.ts"],"names":[],"mappings":";;;;;;;;;;;IAAA;;;;oGAIgG;IAChG,qCAAqC;IACrC,iEAAgE;IAChE,2DAA6G;IAC7G,2DAA4D;IAC5D,2FAA0G;IAC1G,sDAAmD;IACnD,kDAAgD;IAEhD,2DAA2D;IAC3D,IAAU,UAAU,CAEnB;IAFD,WAAU,UAAU;QACL,eAAI,GAAyC,IAAI,mCAAW,CAAC,aAAa,CAAC,CAAC;IAC3F,CAAC,EAFS,UAAU,KAAV,UAAU,QAEnB;IAED,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,EAAE;QACrB,MAAM,aAAa,GAAG,IAAI,8BAAoB,CAAC,UAAU,CAAC,CAAC;QAC3D,MAAM,aAAa,GAAG,IAAI,8BAAoB,CAAC,UAAU,CAAC,CAAC;QAE3D,MAAM,UAAU,GAAG,IAAA,0BAAgB,EAAC,aAAa,EAAE,aAAa,CAAC,CAAC;QAElE,MAAM,YAAY,GAAG,IAAI,4BAAa,EAAE,CAAC;QAEzC,MAAM,UAAU,GAAG;YACjB,QAAQ,EAAE,CAAC,MAAc,EAAE,EAAE;gBAC3B,OAAO,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YACzD,CAAC;SACF,CAAC;QAEF;;;WAGG;QACH,MAAM,2BAA2B,GAAG,CAAC,UAAsB,EAAE,GAAW,EAAmB,EAAE;YAC3F,OAAO,IAAA,2CAAoB,EACzB,UAAU,EACV,GAAG,EACH,YAAY,CAAC,gBAAgB,EAC7B,YAAY,CAAC,aAAa,EAC1B,YAAY,CAAC,uBAAuB,EACpC,UAAU,EACV,IAAI,CACL,CAAC;QACJ,CAAC,CAAC;QAEF,MAAM,oBAAoB,GAAG,2BAA2B,CAAC,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAChF,MAAM,SAAS,GAAG,IAAI,yBAAa,CAAC,UAAU,CAAC,CAAC;QAEhD,IAAI,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC;QAC7C,IAAI,+BAAc,CAAC,UAAU,EAAE,YAAY,EAAE,uCAAgB,EAAE,oBAAoB,EAAE,SAAS,CAAC,CAAC,KAAK,EAAE,CAAC;IAC1G,CAAC,CAAC"}