From 08d83a439d8fb8551c705ee94b3ec6884f988453 Mon Sep 17 00:00:00 2001 From: TZGyn Date: Thu, 9 Nov 2023 03:10:52 +0800 Subject: [PATCH] added env example --- .env.example | 2 ++ Dockerfile | 1 + 2 files changed, 3 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..08366a9 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +ORIGIN=https://link-shortener-svelte-production.up.railway.app +PORT=3000 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 98529bd..9850414 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ COPY ./bun.lockb ./ RUN bun install COPY . . +COPY ./.env.example ./.env RUN bun run build