-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add goatcounter * add counter url to conf * fix * change how goatcouter script is loaded * remove test log * fix * Add environmental variables Co-authored-by: alavarello <alavarello@itba.edu.ar>
- Loading branch information
1 parent
3b1f5c4
commit 52cad5e
Showing
6 changed files
with
40 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
VUE_APP_GOAT_COUNTER=__add_me__ | ||
INFURA_ID=__add_me__ |
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
1 change: 0 additions & 1 deletion
1
frontend/src/components/PollValidEventsCollapse/PollValidEventsCollapse.vue
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
<template> | ||
<!-- Show valid events --> | ||
<div class="valid-events-container"> | ||
|
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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title><%= htmlWebpackPlugin.options.productName %></title> | ||
|
||
<meta property="og:title" content="POAP Vote" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://poap.vote" /> | ||
<meta property="og:image" content="https://www.poap.xyz/POAP.f74a7300.svg" /> | ||
<meta property="og:image:alt" content="The POAP logo" /> | ||
<meta property="og:description" content="A sybil-resistant voting engine for anyone to run polls using Ethereum and POAP" /> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="description" content="<%= htmlWebpackPlugin.options.productDescription %>"> | ||
<meta name="format-detection" content="telephone=no"> | ||
<meta name="msapplication-tap-highlight" content="no"> | ||
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (htmlWebpackPlugin.options.ctx.mode.cordova || htmlWebpackPlugin.options.ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"> | ||
|
||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="icon" type="image/png" href="statics/app-logo-128x128.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="statics/icons/favicon-16x16.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="statics/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="statics/icons/favicon-96x96.png"> | ||
<link rel="icon" type="image/ico" href="statics/icons/favicon.ico"> | ||
</head> | ||
<body> | ||
<!-- DO NOT touch the following DIV --> | ||
<div id="q-app"></div> | ||
</body> | ||
</html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title><%= htmlWebpackPlugin.options.productName %></title> | ||
|
||
<meta property="og:title" content="POAP Vote" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://poap.vote" /> | ||
<meta property="og:image" content="https://www.poap.xyz/POAP.f74a7300.svg" /> | ||
<meta property="og:image:alt" content="The POAP logo" /> | ||
<meta property="og:description" content="A sybil-resistant voting engine for anyone to run polls using Ethereum and POAP" /> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="description" content="<%= htmlWebpackPlugin.options.productDescription %>"> | ||
<meta name="format-detection" content="telephone=no"> | ||
<meta name="msapplication-tap-highlight" content="no"> | ||
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (htmlWebpackPlugin.options.ctx.mode.cordova || htmlWebpackPlugin.options.ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"> | ||
|
||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="icon" type="image/png" href="statics/app-logo-128x128.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="statics/icons/favicon-16x16.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="statics/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="statics/icons/favicon-96x96.png"> | ||
<link rel="icon" type="image/ico" href="statics/icons/favicon.ico"> | ||
</head> | ||
<body> | ||
<!-- DO NOT touch the following DIV --> | ||
<div id="q-app"></div> | ||
</body> | ||
</html> |
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