diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..379b198 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,7 @@ +Fixes # . + +Changes proposed in this PR: +- +- + + diff --git a/Dockerfile b/Dockerfile index ce7a79f..5b3fe7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN cd /src && npm install COPY ./ /src WORKDIR /src +ENV some=thing #ENV DEBUG=* - CMD ["npm", "start"] diff --git a/README.md b/README.md index 96cb37b..4bd843f 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,3 @@ An express microservice used to demo Triggers a CI pipeline in CSDP - diff --git a/package.json b/package.json index adb71bb..553a13a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "microservice", - "version": "0.0.0", + "version": "0.0.1", "private": true, "scripts": { "start": "node ./bin/www", @@ -19,3 +19,4 @@ "mocha": "^2.2.5" } } + diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index d860033..7675de5 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -1,5 +1,5 @@ body { - background-color: LightCyan; + background-color: Grey; padding: 50px; font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; }