From 6d5a6d7087c94c1bdbd19af8c46ba1baec9d7984 Mon Sep 17 00:00:00 2001
From: Martin Weise <martin.weise@tuwien.ac.at>
Date: Fri, 29 Jul 2022 17:50:49 +0200
Subject: [PATCH] Delete old files, change order

---
 .env.example                                               | 2 +-
 .fda-deployment/fda-authentication-service/install_invenio | 2 --
 Makefile                                                   | 7 +------
 3 files changed, 2 insertions(+), 9 deletions(-)
 delete mode 100755 .fda-deployment/fda-authentication-service/install_invenio

diff --git a/.env.example b/.env.example
index a5773760e7..0e6e62583c 100644
--- a/.env.example
+++ b/.env.example
@@ -2,4 +2,4 @@ API="http://fda-gateway-service:9095"
 MAIL_HOST="stmp.example.com"
 MAIL_PORT="587"
 MAIL_USERNAME="user"
-MAIL_PASSWORD="pass"
\ No newline at end of file
+MAIL_PASSWORD="pass"
diff --git a/.fda-deployment/fda-authentication-service/install_invenio b/.fda-deployment/fda-authentication-service/install_invenio
deleted file mode 100755
index a6a6384a43..0000000000
--- a/.fda-deployment/fda-authentication-service/install_invenio
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/bash
-sudo cat /root/invenio.secret >> ./.env
diff --git a/Makefile b/Makefile
index b14b74581e..f76fb46d50 100644
--- a/Makefile
+++ b/Makefile
@@ -2,20 +2,15 @@ all:
 
 config-backend:
 	./.fda-deployment/fda-authentication-service/install_smtp
-	./.fda-deployment/fda-authentication-service/install_invenio
 
 config-frontend:
 	./.fda-deployment/fda-ui/install_cert
 	docker-compose -f docker-compose.prod.yml config
 
 config-docker:
-	docker image pull -q postgres:13.4-alpine || true > /dev/null
-	docker image pull -q mysql:8.0 || true > /dev/null
 	docker image pull -q mariadb:10.5 || true > /dev/null
-	docker image pull -q rabbitmq:3-alpine || true > /dev/null
-	docker image pull -q nginx:1.20-alpine || true > /dev/null
 
-config: config-backend config-docker config-frontend
+config: config-docker config-frontend config-backend
 
 build-backend-metadata:
 	mvn -f ./fda-metadata-db/pom.xml clean install
-- 
GitLab