Updates to secrets manager; added foundation for e2e testing; began initialization for pipeline builds

This commit is contained in:
2023-04-29 00:58:15 -04:00
parent 29d36a57d6
commit bdfab94810
22 changed files with 9839 additions and 414 deletions

20
.drone.yml Normal file
View File

@@ -0,0 +1,20 @@
kind: pipeline
type: docker
name: default
steps:
- name: build backend
image: docker.thiccdata.io/nvm-node-debian:latest
commands:
- docker build -t docker.thiccdata.io/mtg-event-manager-backend:latest -f ./backend/Dockerfile ./
- docker push docker.thiccdata.io/mtg-event-manager-backend:latest
volumes:
- name: docker
path: /var/run/docker.sock
trigger:
branch:
- main
volumes:
- name: docker
host:
path: /var/run/docker.sock