aboutsummaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/src/main/webapp/index.html
blob: b4a3a73dda99bc8b2cd7890ca85629613bc3b39b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
    <head>
        <title>SDC Sequencer - DEMO</title>
        <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
        <meta http-equiv="content-type" content="text/html; charset=UTF8">
        <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
        <script type="text/javascript" src="index.js"></script>
    </head>
    <body>
        <div id="asdcsApplication"></div>
    </body>
</html>
M-765 ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) OUTPUT_DIR := $(ROOT_DIR)/dist PACKAGE_DIR := $(OUTPUT_DIR)/packages SECRET_DIR := $(OUTPUT_DIR)/secrets ifneq ($(SKIP_LINT),TRUE) HELM_LINT_CMD := helm lint else HELM_LINT_CMD := echo "Skipping linting of" endif SUBMODS := robot aai EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS) HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART) .PHONY: $(EXCLUDES) $(HELM_CHARTS) $(SUBMODS) all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) plugins $(COMMON_CHARTS): @echo "\n[$@]" @make package-$@ $(HELM_CHARTS): @echo "\n[$@]" @make package-$@ $(SUBMODS): @echo "\n[$@]" @make submod-$@ @make package-$@ submod-%: @make $*/requirements.yaml %/requirements.yaml: $(error Submodule $* needs to be retrieved from gerrit. See https://wiki.onap.org/display/DW/OOM+-+Development+workflow+after+code+transfer+to+tech+teams ); fi make-%: @if [ -f $*/Makefile ]; then make -C $*; fi dep-%: make-% @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi lint-%: dep-% @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi package-%: lint-% @mkdir -p $(PACKAGE_DIR) @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi @helm repo index $(PACKAGE_DIR) clean: @rm -f */requirements.lock @find . -type f -name '*.tgz' -delete @rm -rf $(PACKAGE_DIR)/* # publish helm plugins via distrubtion directory plugins: @cp -R helm $(PACKAGE_DIR)/ # start up a local helm repo to serve up helm chart packages repo: @mkdir -p $(PACKAGE_DIR) @helm serve --repo-path $(PACKAGE_DIR) & @helm repo index $(PACKAGE_DIR) @helm repo add local http://127.0.0.1:8879 # stop local helm repo repo-stop: @pkill helm @helm repo remove local %: @: