Overview

The Static WebApp is designed to make the deployment of subscriptions as easy as possible without the need for Continis to create manual configuration files.

This document details the low-level configuration as deployed of the Static WebApp used as part of the EA vending solution.

Logical Flow

Repository

Pipelines

ASCII Tree

|terraform
├── mangler
│   └── main.tf
├── statwebappuri
│   ├── .terraform.lock.hcl
│   ├── main.tf
│   ├── provider.tf
│   └── terraform.tf
├── .terraform.lock.hcl
├── main.tf
├── provider.tf
├── readme.md
└── terraform.tf

|assets
├── bootstrap
│   ├── css
│   │   ├── bootstrap-grid.min.css
│   │   ├── bootstrap-reboot.min.css
│   │   └── bootstrap.min.css
│   └── js
│       └── bootstrap.bundle.min.js
├── dropdown
│   ├── css
│   │   └── style.css
│   └── js
│       └── navbar-dropdown.js
├── images
│   ├── 634fd320dc605c05d6a6618e-contino-logo-white-1.png
│   ├── banner.png
│   ├── gh-maurice-picel-bi.gif
│   ├── hashes.json
│   ├── icon-1.png
│   └── mobi-sub.png
├── mobirise
│   └── css
│       └── mbr-additional.css
├── smoothscroll
│   └── smooth-scroll.js
├── sociallikes
│   └── social-likes.js
├── socicon
│   ├── css
│   │   └── styles.css
│   ├── fonts
│   │   ├── socicon.eot
│   │   ├── socicon.svg
│   │   ├── socicon.ttf
│   │   ├── socicon.woff
│   │   └── socicon.woff2
│   └── theme
│       ├── css
│       │   └── style.css
│       └── js
│           └── script.js
├── theme
│   ├── css
│   │   └── style.css
│   └── js
│       └── script.js
├── web
│   └── assets
│       ├── mobirise-icons
│       │   ├── mobirise-icons.css
│       │   ├── mobirise-icons.eot
│       │   ├── mobirise-icons.svg
│       │   ├── mobirise-icons.ttf
│       │   └── mobirise-icons.woff
│       └── mobirise-icons2
│           ├── mobirise2.css
│           ├── mobirise2.eot
│           ├── mobirise2.svg
│           ├── mobirise2.ttf
│           └── mobirise2.woff
└── ytplayer
    └── index.js

Attachments: