Updated Caddy version in dockerfile.

This commit is contained in:
Patrick Fic
2022-05-12 15:50:40 -07:00
parent 789fe501db
commit 46ea56feaf
3 changed files with 4 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ dotenv.config({
const RootDirectory = process.env.MEDIA_PATH!.replace("~", os.homedir);
const JobsFolder = "Jobs";
const VendorsFolder = "Vendors";
export const FolderPaths = {
Root: RootDirectory,
Jobs: path.join(RootDirectory, JobsFolder),
@@ -30,4 +31,5 @@ export default function InitServer() {
logger.info(`Ensuring Vendors media path exists: ${FolderPaths.Vendors}`);
fs.ensureDirSync(FolderPaths.Vendors);
logger.info("Folder Paths", FolderPaths);
logger.info("IMS Token set to:", (process.env.IMS_TOKEN || "").trim());
}