mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-13 19:47:45 +00:00
16 lines
537 B
TypeScript
16 lines
537 B
TypeScript
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
// This is a placeholder value replaced by the build process
|
|
export const APP_VERSION = "1.13.0-rc.0";
|
|
|
|
export const __FILENAME = fileURLToPath(import.meta.url);
|
|
export const __DIRNAME = path.dirname(__FILENAME);
|
|
|
|
export const APP_PATH = path.join("config");
|
|
|
|
export const configFilePath1 = path.join(APP_PATH, "config.yml");
|
|
export const configFilePath2 = path.join(APP_PATH, "config.yaml");
|
|
|
|
export const privateConfigFilePath1 = path.join(APP_PATH, "privateConfig.yml");
|