From 682200ce68df9d951025404f5055b6a332d462b2 Mon Sep 17 00:00:00 2001 From: Jason Casareno Date: Mon, 22 Aug 2022 12:54:12 -0700 Subject: [PATCH] Rename file and undid unnecessary changes --- .github/workflows/deploy-netlify.yml | 2 +- Dockerfile | 2 +- packages/hoppscotch-app/components/http/Parameters.vue | 2 +- .../components/http/{Variables.vue => PathVariables.vue} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename packages/hoppscotch-app/components/http/{Variables.vue => PathVariables.vue} (100%) diff --git a/.github/workflows/deploy-netlify.yml b/.github/workflows/deploy-netlify.yml index 4837d45bc..e141db6e0 100644 --- a/.github/workflows/deploy-netlify.yml +++ b/.github/workflows/deploy-netlify.yml @@ -19,7 +19,7 @@ jobs: run_install: true - name: Setup Environment - run: mv packages/hoppscotch-app/.env packages/hoppscotch-app/.env + run: mv packages/hoppscotch-app/.env.example packages/hoppscotch-app/.env - name: Build Site run: pnpm run generate diff --git a/Dockerfile b/Dockerfile index 4b3f6b654..1572b03f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN pnpm i --unsafe-perm=true ENV HOST 0.0.0.0 EXPOSE 3000 -RUN mv packages/hoppscotch-app/.env packages/hoppscotch-app/.env +RUN mv packages/hoppscotch-app/.env.example packages/hoppscotch-app/.env RUN pnpm run generate diff --git a/packages/hoppscotch-app/components/http/Parameters.vue b/packages/hoppscotch-app/components/http/Parameters.vue index 6a0be351c..22668ea0d 100644 --- a/packages/hoppscotch-app/components/http/Parameters.vue +++ b/packages/hoppscotch-app/components/http/Parameters.vue @@ -2,7 +2,7 @@

- +
diff --git a/packages/hoppscotch-app/components/http/Variables.vue b/packages/hoppscotch-app/components/http/PathVariables.vue similarity index 100% rename from packages/hoppscotch-app/components/http/Variables.vue rename to packages/hoppscotch-app/components/http/PathVariables.vue