mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Fix: logs data disapearing causing crashes (#2566) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Refactor helm-chart.api and improve kube validation and error handling (#2265) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix: HPA's not sortable by age (#2565) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Conditionally render status icon for kube meta (#2298) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix custom resource loading spinner appears above extensions' cluster menus (#2344) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Lens should point to the release docs (#2268) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Refactor the Extensions settings page (#2221) Signed-off-by: Sebastian Malton <sebastian@malton.name> * try and get jest to not core dump Signed-off-by: Sebastian Malton <sebastian@malton.name>
56 lines
2.4 KiB
TypeScript
56 lines
2.4 KiB
TypeScript
// App's common configuration for any process (main, renderer, build pipeline, etc.)
|
|
import path from "path";
|
|
import { SemVer } from "semver";
|
|
import packageInfo from "../../package.json";
|
|
import { defineGlobal } from "./utils/defineGlobal";
|
|
|
|
export const isMac = process.platform === "darwin";
|
|
export const isWindows = process.platform === "win32";
|
|
export const isLinux = process.platform === "linux";
|
|
export const isDebugging = ["true", "1", "yes", "y", "on"].includes((process.env.DEBUG ?? "").toLowerCase());
|
|
export const isSnap = !!process.env.SNAP;
|
|
export const isProduction = process.env.NODE_ENV === "production";
|
|
export const isTestEnv = !!process.env.JEST_WORKER_ID;
|
|
export const isDevelopment = !isTestEnv && !isProduction;
|
|
export const isPublishConfigured = Object.keys(packageInfo.build).includes("publish");
|
|
|
|
export const productName = packageInfo.productName;
|
|
export const appName = `${packageInfo.productName}${isDevelopment ? "Dev" : ""}`;
|
|
export const publicPath = "/build/";
|
|
|
|
// Webpack build paths
|
|
export const contextDir = process.cwd();
|
|
export const buildDir = path.join(contextDir, "static", publicPath);
|
|
export const mainDir = path.join(contextDir, "src/main");
|
|
export const rendererDir = path.join(contextDir, "src/renderer");
|
|
export const htmlTemplate = path.resolve(rendererDir, "template.html");
|
|
export const sassCommonVars = path.resolve(rendererDir, "components/vars.scss");
|
|
export const webpackDevServerPort = 9009;
|
|
|
|
// Special runtime paths
|
|
defineGlobal("__static", {
|
|
get() {
|
|
if (isDevelopment) {
|
|
return path.resolve(contextDir, "static");
|
|
}
|
|
|
|
return path.resolve(process.resourcesPath, "static");
|
|
}
|
|
});
|
|
|
|
// Apis
|
|
export const apiPrefix = "/api"; // local router apis
|
|
export const apiKubePrefix = "/api-kube"; // k8s cluster apis
|
|
|
|
// Links
|
|
export const issuesTrackerUrl = "https://github.com/lensapp/lens/issues";
|
|
export const slackUrl = "https://join.slack.com/t/k8slens/shared_invite/enQtOTc5NjAyNjYyOTk4LWU1NDQ0ZGFkOWJkNTRhYTc2YjVmZDdkM2FkNGM5MjhiYTRhMDU2NDQ1MzIyMDA4ZGZlNmExOTc0N2JmY2M3ZGI";
|
|
export const supportUrl = "https://docs.k8slens.dev/latest/support/";
|
|
|
|
// This explicitly ignores the prerelease info on the package version
|
|
const { major, minor, patch } = new SemVer(packageInfo.version);
|
|
const mmpVersion = [major, minor, patch].join(".");
|
|
const docsVersion = isProduction ? `v${mmpVersion}` : "latest";
|
|
|
|
export const docsUrl = `https://docs.k8slens.dev/${docsVersion}`;
|