From 512375f6ed6f7fe895f0ebbb9494e7d2feb7a525 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:16:45 +0200 Subject: :sparkles: cdn --- cdn/src/start.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 cdn/src/start.ts (limited to 'cdn/src/start.ts') diff --git a/cdn/src/start.ts b/cdn/src/start.ts new file mode 100644 index 00000000..57c9f704 --- /dev/null +++ b/cdn/src/start.ts @@ -0,0 +1,27 @@ +import path from "path"; +import dotenv from "dotenv"; +import fse from "fs-extra"; +dotenv.config(); + +if (!process.env.STORAGE_PROVIDER) process.env.STORAGE_PROVIDER = "file"; +// TODO:nodejs path.join trailing slash windows compatible +if (process.env.STORAGE_PROVIDER === "file") { + if (process.env.STORAGE_LOCATION) { + if (!process.env.STORAGE_LOCATION.startsWith("/")) { + process.env.STORAGE_LOCATION = path.join(__dirname, "..", process.env.STORAGE_LOCATION, "/"); + } + } else { + process.env.STORAGE_LOCATION = path.join(__dirname, "..", "files", "/"); + } + fse.ensureDirSync(process.env.STORAGE_LOCATION); +} + +import { CDNServer } from "./Server"; + +const server = new CDNServer({ port: Number(process.env.PORT) || 3003 }); +server + .start() + .then(() => { + console.log("[Server] started on :" + server.options.port); + }) + .catch((e) => console.error("[Server] Error starting: ", e)); -- cgit 1.5.1