From 3814d89e1d6d9f3e9514112413464920837d0dc2 Mon Sep 17 00:00:00 2001 From: Jared Furlow Date: Mon, 23 Jun 2025 18:13:08 -0500 Subject: [PATCH] Test --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 423b3e3..98c9816 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,8 @@ app.post("/uploadVideo", async (req, res) => { const videoExt = fileInfo.filename.split(".").at(-1); var targetPath = path.join( - "./temp/", //"/opt/prod/storage/uploadsPart1" + //"./temp/", //"/opt/prod/storage/uploadsPart1" + "/opt/prod/storage/uploadsPart1", `${videoId}.${videoExt}` ); const fileStream = fs.createWriteStream(targetPath);