diff --git a/.env.example b/.env.example index a5773760e786c31e97a23493d756c0b1f454ac42..0e6e62583c18d4c86694ef34356dc324119d506c 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 a6a6384a4303efda3b68f83d21478d23096bff36..0000000000000000000000000000000000000000 --- 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 b14b74581ea14ee0605d822559a656c935f3f428..f76fb46d50c89fe66bd75c54e5a350727a5fbe81 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