From 900c4fe50a50bb0a2bb9c6c491fdc30a3cf80658 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 12 Feb 2021 12:25:58 +0100 Subject: [PATCH] moved all branding files in branding repository --- backend.Dockerfile | 4 ++-- {constants => branding/constants}/emails.js | 0 {constants => branding/constants}/links.js | 0 {constants => branding/constants}/metadata.js | 0 {static => branding/static}/favicon.ico | Bin {static => branding/static}/icon.png | Bin .../static}/img/custom/Logo-Horizontal-Dark.svg | 0 .../static}/img/custom/Logo-Horizontal.svg | 0 {static => branding/static}/img/custom/logout.svg | 0 .../static}/img/custom/password-reset.svg | 0 {static => branding/static}/img/custom/sign-up.svg | 0 .../static}/img/custom/under-maintenance.svg | 0 {static => branding/static}/img/custom/welcome.svg | 0 maintenance.Dockerfile | 4 ++-- webapp.Dockerfile | 4 ++-- 15 files changed, 6 insertions(+), 6 deletions(-) rename {constants => branding/constants}/emails.js (100%) rename {constants => branding/constants}/links.js (100%) rename {constants => branding/constants}/metadata.js (100%) rename {static => branding/static}/favicon.ico (100%) rename {static => branding/static}/icon.png (100%) rename {static => branding/static}/img/custom/Logo-Horizontal-Dark.svg (100%) rename {static => branding/static}/img/custom/Logo-Horizontal.svg (100%) rename {static => branding/static}/img/custom/logout.svg (100%) rename {static => branding/static}/img/custom/password-reset.svg (100%) rename {static => branding/static}/img/custom/sign-up.svg (100%) rename {static => branding/static}/img/custom/under-maintenance.svg (100%) rename {static => branding/static}/img/custom/welcome.svg (100%) diff --git a/backend.Dockerfile b/backend.Dockerfile index c2e41e4..db234aa 100644 --- a/backend.Dockerfile +++ b/backend.Dockerfile @@ -4,5 +4,5 @@ FROM ocelotsocialnetwork/backend:latest as branded # Copy public constants to the docker image branding it -COPY constants/links.js src/config/ -COPY constants/metadata.js src/config/ +COPY branding/constants/links.js src/config/ +COPY branding/constants/metadata.js src/config/ diff --git a/constants/emails.js b/branding/constants/emails.js similarity index 100% rename from constants/emails.js rename to branding/constants/emails.js diff --git a/constants/links.js b/branding/constants/links.js similarity index 100% rename from constants/links.js rename to branding/constants/links.js diff --git a/constants/metadata.js b/branding/constants/metadata.js similarity index 100% rename from constants/metadata.js rename to branding/constants/metadata.js diff --git a/static/favicon.ico b/branding/static/favicon.ico similarity index 100% rename from static/favicon.ico rename to branding/static/favicon.ico diff --git a/static/icon.png b/branding/static/icon.png similarity index 100% rename from static/icon.png rename to branding/static/icon.png diff --git a/static/img/custom/Logo-Horizontal-Dark.svg b/branding/static/img/custom/Logo-Horizontal-Dark.svg similarity index 100% rename from static/img/custom/Logo-Horizontal-Dark.svg rename to branding/static/img/custom/Logo-Horizontal-Dark.svg diff --git a/static/img/custom/Logo-Horizontal.svg b/branding/static/img/custom/Logo-Horizontal.svg similarity index 100% rename from static/img/custom/Logo-Horizontal.svg rename to branding/static/img/custom/Logo-Horizontal.svg diff --git a/static/img/custom/logout.svg b/branding/static/img/custom/logout.svg similarity index 100% rename from static/img/custom/logout.svg rename to branding/static/img/custom/logout.svg diff --git a/static/img/custom/password-reset.svg b/branding/static/img/custom/password-reset.svg similarity index 100% rename from static/img/custom/password-reset.svg rename to branding/static/img/custom/password-reset.svg diff --git a/static/img/custom/sign-up.svg b/branding/static/img/custom/sign-up.svg similarity index 100% rename from static/img/custom/sign-up.svg rename to branding/static/img/custom/sign-up.svg diff --git a/static/img/custom/under-maintenance.svg b/branding/static/img/custom/under-maintenance.svg similarity index 100% rename from static/img/custom/under-maintenance.svg rename to branding/static/img/custom/under-maintenance.svg diff --git a/static/img/custom/welcome.svg b/branding/static/img/custom/welcome.svg similarity index 100% rename from static/img/custom/welcome.svg rename to branding/static/img/custom/welcome.svg diff --git a/maintenance.Dockerfile b/maintenance.Dockerfile index c8ca4b7..585947c 100644 --- a/maintenance.Dockerfile +++ b/maintenance.Dockerfile @@ -4,5 +4,5 @@ FROM ocelotsocialnetwork/maintenance:latest as branded # Copy public constants to the docker image branding it -COPY static/ static/ -COPY constants/ constants/ +COPY branding/static/ static/ +COPY branding/constants/ constants/ diff --git a/webapp.Dockerfile b/webapp.Dockerfile index d87412a..cec47cc 100644 --- a/webapp.Dockerfile +++ b/webapp.Dockerfile @@ -4,5 +4,5 @@ FROM ocelotsocialnetwork/webapp:latest as branded # Copy public constants to the docker image branding it -COPY static/ static/ -COPY constants/ constants/ +COPY branding/static/ static/ +COPY branding/constants/ constants/