From 0f49868de83b580e3bc42b2625e00aef339d0583 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Wed, 7 Apr 2021 17:52:22 +0100 Subject: [PATCH] Updating to make sure the envoy generated dev file is very obviously not to be edited. --- .gitignore | 2 +- hosting/docker-compose.dev.yaml | 2 +- packages/server/scripts/dev/manage.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 418c28d981..111263f9f1 100644 --- a/.gitignore +++ b/.gitignore @@ -63,7 +63,7 @@ typings/ # dotenv environment variables file .env !hosting/.env -hosting/generated-envoy.dev.yaml +hosting/.generated-envoy.dev.yaml # parcel-bundler cache (https://parceljs.org/) .cache diff --git a/hosting/docker-compose.dev.yaml b/hosting/docker-compose.dev.yaml index 5c6947a3e9..9b4c353981 100644 --- a/hosting/docker-compose.dev.yaml +++ b/hosting/docker-compose.dev.yaml @@ -27,7 +27,7 @@ services: restart: always image: envoyproxy/envoy:v1.16-latest volumes: - - ./generated-envoy.dev.yaml:/etc/envoy/envoy.yaml + - ./.generated-envoy.dev.yaml:/etc/envoy/envoy.yaml ports: - "${MAIN_PORT}:10000" depends_on: diff --git a/packages/server/scripts/dev/manage.js b/packages/server/scripts/dev/manage.js index 88967eb0b3..7a318ff6ff 100644 --- a/packages/server/scripts/dev/manage.js +++ b/packages/server/scripts/dev/manage.js @@ -25,7 +25,7 @@ async function init() { // generate envoy file, always do this incase it has changed const hostingPath = path.join(process.cwd(), "..", "..", "hosting") const envoyHbsPath = path.join(hostingPath, "envoy.dev.yaml.hbs") - const envoyOutputPath = path.join(hostingPath, "generated-envoy.dev.yaml") + const envoyOutputPath = path.join(hostingPath, ".generated-envoy.dev.yaml") const contents = fs.readFileSync(envoyHbsPath, "utf8") const config = { address: isLinux() ? "172.17.0.1" : "host.docker.internal",