-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🌱 Vendor webui dependencies Signed-off-by: Mauro Morales <[email protected]> * Remove GA caching Signed-off-by: Mauro Morales <[email protected]> * The deps need to be there before the compilation of the agent Signed-off-by: Mauro Morales <[email protected]> * Remove unnecesary tag Signed-off-by: Mauro Morales <[email protected]> * Do not build webui-deps Signed-off-by: Mauro Morales <[email protected]> Signed-off-by: Mauro Morales <[email protected]>
- Loading branch information
1 parent
912ba6d
commit 286efcf
Showing
10 changed files
with
451 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Web UI | ||
|
||
## Dependencies | ||
|
||
All dependencies are defined in the package.json and package-lock.json files. | ||
You can use `npm` to install or upgrade any packages. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,24 +6,25 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous"> | ||
|
||
<!-- Font awesome --> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/node_modules/@fortawesome/fontawesome-free/css/all.css" crossorigin="anonymous"> | ||
|
||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'> | ||
<link rel="shortcut icon" href="/favicon.ico"> | ||
|
||
<!-- CodeMirror --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.57.0/codemirror.min.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.57.0/codemirror.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.57.0/mode/yaml/yaml.min.js"></script> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.57.0/theme/material.min.css"> | ||
<link rel="stylesheet" href="/node_modules/codemirror/lib/codemirror.css"> | ||
<script src="/node_modules/codemirror/lib/codemirror.js"></script> | ||
<script src="/node_modules/codemirror/mode/yaml/yaml.js"></script> | ||
<link rel="stylesheet" href="/node_modules/codemirror/theme/material.css"> | ||
|
||
<!-- Add the yaml-js library --> | ||
<script type="text/javascript" src="/js/yaml.min.js"></script> | ||
<script type="text/javascript" src="/node_modules/yamljs/dist/yaml.min.js"></script> | ||
|
||
<!-- Alpine.js --> | ||
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script> | ||
<script defer src="/node_modules/alpinejs/dist/cdn.min.js"></script> | ||
<style> | ||
.navbar { | ||
background-color: #ee5007; | ||
|
@@ -111,12 +112,11 @@ <h1>Welcome to the Installer!</h1> | |
</form> | ||
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> | ||
<!-- Optional JavaScript --> | ||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script> | ||
<script src="/node_modules/jquery/dist/jquery.slim.min.js" crossorigin="anonymous"></script> | ||
<script src="/node_modules/popper.js/dist/umd/popper.min.js" crossorigin="anonymous"></script> | ||
<script src="/node_modules/bootstrap/dist/js/bootstrap.min.js" crossorigin="anonymous"></script> | ||
|
||
<footer class="bg-light py-3 mt-5 d-flex justify-content-center"> | ||
<div class="container mx-auto"> | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,14 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.min.css" crossorigin="anonymous"> | ||
|
||
<!-- Font awesome --> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/node_modules/@fortawesome/fontawesome-free/css/all.css" crossorigin="anonymous"> | ||
|
||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'> | ||
|
||
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script> | ||
<script defer src="/node_modules/alpinejs/dist/cdn.min.js"></script> | ||
<style> | ||
.navbar { | ||
background-color: #ee5007; | ||
|
@@ -45,12 +45,11 @@ <h1> Installation failed </h1> | |
<button x-on:click="window.location='index.html'" class="btn btn-primary">Go Back</button> | ||
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> | ||
<!-- Optional JavaScript --> | ||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script> | ||
<script src="/node_modules/jquery/dist/jquery.slim.min.js" crossorigin="anonymous"></script> | ||
<script src="/node_modules/popper.js/dist/umd/popper.min.js" crossorigin="anonymous"></script> | ||
<script src="/node_modules/bootstrap/dist/js/bootstrap.min.js" crossorigin="anonymous"></script> | ||
|
||
<footer class="bg-light py-3 mt-5 d-flex justify-content-center"> | ||
<div class="container mx-auto"> | ||
|
Oops, something went wrong.