Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Mar 27, 2024
1 parent 312d2af commit 71958a3
Show file tree
Hide file tree
Showing 25 changed files with 777 additions and 0 deletions.
Binary file added api/public/allow-override-cli-args-in-task.mp4
Binary file not shown.
5 changes: 5 additions & 0 deletions api/public/css/app.733de913.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions api/public/css/chunk-vendors.74b5a4f7.css

Large diffs are not rendered by default.

Binary file added api/public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions api/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added api/public/fonts/Roboto-Black.78bcb615.ttf
Binary file not shown.
Binary file added api/public/fonts/Roboto-Bold.88d61d57.ttf
Binary file not shown.
Binary file added api/public/fonts/Roboto-Light.f2e7274e.ttf
Binary file not shown.
Binary file added api/public/fonts/Roboto-Medium.af9d0139.ttf
Binary file not shown.
Binary file added api/public/fonts/Roboto-Regular.ae3a8db9.ttf
Binary file not shown.
Binary file added api/public/fonts/Roboto-Thin.c195fc4f.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
54 changes: 54 additions & 0 deletions api/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="favicon.png">
<title>Semaphore UI</title>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LLNHCZSEZ4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-LLNHCZSEZ4');
</script>

<script>window.$crisp=[];window.CRISP_WEBSITE_ID="5867f49c-5d46-485e-85e7-eb3cdba1cdd4";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>

<!-- Event snippet for Purchase conversion page
In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. -->
<script>
function gtag_report_conversion(amount) {
var callback = function () {
// if (typeof(url) != 'undefined') {
// window.location = url;
// }
};
gtag('event', 'conversion', {
'send_to': 'AW-11221016546/RuOcCL-f0JwZEOK_zOYp',
'value': amount,
'currency': 'USD',
'transaction_id': '',
'event_callback': callback
});
return false;
}
</script>

<script defer type="module" src="js/chunk-vendors.dddc336c.js"></script><script defer type="module" src="js/app.e30931a3.js"></script><link href="css/chunk-vendors.74b5a4f7.css" rel="stylesheet"><link href="css/app.733de913.css" rel="stylesheet"><script defer src="js/chunk-vendors-legacy.1eeba710.js" nomodule></script><script defer src="js/app-legacy.4b9ab2d9.js" nomodule></script></head>
<body>
<noscript>
<strong>
We're sorry but web doesn't work properly
without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
2 changes: 2 additions & 0 deletions api/public/js/app-legacy.4b9ab2d9.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions api/public/js/app-legacy.4b9ab2d9.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions api/public/js/app.e30931a3.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions api/public/js/app.e30931a3.js.map

Large diffs are not rendered by default.

315 changes: 315 additions & 0 deletions api/public/js/chunk-vendors-legacy.1eeba710.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions api/public/js/chunk-vendors-legacy.1eeba710.js.map

Large diffs are not rendered by default.

313 changes: 313 additions & 0 deletions api/public/js/chunk-vendors.dddc336c.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions api/public/js/chunk-vendors.dddc336c.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions web/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module.exports = {
configureWebpack: {
devServer: {
historyApiFallback: true,
proxy: {
'^/api': {
target: 'http://localhost:3000',
},
},
},
},
chainWebpack: (config) => {
Expand All @@ -16,4 +21,5 @@ module.exports = {
'vuetify',
],
publicPath: './',
// outputDir: '../api/public',
};

0 comments on commit 71958a3

Please sign in to comment.