-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add first version of dogfooding app (#68)
Co-authored-by: Sasha <[email protected]>
- Loading branch information
1 parent
854ae02
commit e2ab5ae
Showing
11 changed files
with
8,696 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport" /> | ||
<title>Sent Received Message Ratio</title> | ||
<link rel="apple-touch-icon" href="./favicon.png" /> | ||
<link rel="manifest" href="./manifest.json" /> | ||
<link rel="icon" href="./favicon.ico" /> | ||
<style> | ||
#container { | ||
display: flex; | ||
height: 100vh; | ||
} | ||
#sender, | ||
#receiver { | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: flex-start; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div> | ||
<h3>Waku Dogfooding App</h3> | ||
<div id="runningScreen" style="display: none"> | ||
<label for="wallet">Wallet Address:</label> | ||
<span id="wallet"></span> | ||
<br /> | ||
<label for="numSent">Messages Sent:</label> | ||
<span id="numSent">0</span> | ||
</div> | ||
</div> | ||
<div id="container"> | ||
<div id="sender"> | ||
<h3>Sent</h3> | ||
<div id="messagesSent"></div> | ||
</div> | ||
<div id="receiver"> | ||
<h3>Received</h3> | ||
<div id="messagesReceived"></div> | ||
</div> | ||
</div> | ||
<script src="./index.js"></script> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "Sent Received Message Ratio", | ||
"description": "Example meant to run across two browsers to test ratio of messages sent to messages received", | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "64x64 32x32 24x24 16x16", | ||
"type": "image/x-icon" | ||
}, | ||
{ | ||
"src": "favicon.png", | ||
"type": "image/png", | ||
"sizes": "192x192" | ||
} | ||
], | ||
"display": "standalone", | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff" | ||
} |
Oops, something went wrong.