Added excalidraw #3
4 changed files with 14 additions and 4 deletions
|
@ -107,9 +107,17 @@ release-to-clojars:
|
||||||
script:
|
script:
|
||||||
- pyb publish_artifacts
|
- pyb publish_artifacts
|
||||||
|
|
||||||
jitsi-image-test-publish:
|
jitsi-web-image-publish:
|
||||||
<<: *img
|
<<: *img
|
||||||
<<: *tag_only
|
<<: *tag_only
|
||||||
stage: image
|
stage: image
|
||||||
script:
|
script:
|
||||||
- cd infrastructure/web && pyb image publish
|
- cd infrastructure/web && pyb image publish
|
||||||
|
|
||||||
|
jitsi-excalidraw-backend-image-publish:
|
||||||
|
<<: *img
|
||||||
|
<<: *tag_only
|
||||||
|
stage: image
|
||||||
|
script:
|
||||||
|
- cd infrastructure/excalidraw-backend && pyb image publish
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ from datetime import datetime
|
||||||
from pybuilder.core import task, init
|
from pybuilder.core import task, init
|
||||||
from ddadevops import *
|
from ddadevops import *
|
||||||
|
|
||||||
name = "excalidraw-backend"
|
name = "c4k-jitsi"
|
||||||
MODULE = "excalidraw-backend"
|
MODULE = "excalidraw-backend"
|
||||||
PROJECT_ROOT_PATH = "../.."
|
PROJECT_ROOT_PATH = "../.."
|
||||||
version = "1.4.2-SNAPSHOT"
|
version = "1.4.2-SNAPSHOT"
|
||||||
|
@ -22,7 +22,7 @@ def initialize(project):
|
||||||
"project_root_path": PROJECT_ROOT_PATH,
|
"project_root_path": PROJECT_ROOT_PATH,
|
||||||
"build_types": ["IMAGE"],
|
"build_types": ["IMAGE"],
|
||||||
"mixin_types": [],
|
"mixin_types": [],
|
||||||
"image_naming": "NAME_ONLY",
|
"image_naming": "NAME_AND_NAME",
|
||||||
"image_tag": f"{image_tag}",
|
"image_tag": f"{image_tag}",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Taken from: https://github.com/jitsi/excalidraw-backend
|
||||||
|
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import dotenv from 'dotenv';
|
import dotenv from 'dotenv';
|
||||||
import express from 'express';
|
import express from 'express';
|
||||||
|
|
|
@ -17,4 +17,4 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: excalidraw-backend
|
- name: excalidraw-backend
|
||||||
image: domaindrivenarchitecture/excalidraw-backend
|
image: domaindrivenarchitecture/c4k-jitsi-excalidraw-backend
|
Loading…
Reference in a new issue