summary refs log tree commit diff
path: root/cdn/src/start.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-12 20:17:41 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-12 20:17:41 +0200
commite01550d13c1df75d919166fd1635a8565ab858c5 (patch)
tree73cb1f1954024f01973292c0c120a363dfceaed0 /cdn/src/start.ts
parent:bug: fix rabbit mq -> fanout instead of work queue (diff)
parent:sparkles: cdn (diff)
downloadserver-e01550d13c1df75d919166fd1635a8565ab858c5.tar.xz
Merge branch 'master' into gateway
Diffstat (limited to 'cdn/src/start.ts')
-rw-r--r--cdn/src/start.ts27
1 files changed, 27 insertions, 0 deletions
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));