nandi/frqpublic Fork 0
30d5faea64ab749e0ecd20ae19ea0a5363b5b8f1
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

A third target, and the seam that was already waiting for it f54ca45 · on 30d5faea64ab749e0ecd20ae19ea0a5363b5b8f1 · nandi · 2d ago
index.html · 40 lines · 1.3 KBHTML Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
  <!--
    Committed rather than generated. `just flutter-web` used to run
    `flutter create --platforms=web` when this directory was missing, which
    was fine while the page was Flutter's default one — but the OAuth client
    needs a script of its own beside the bundle, and a generated runner is no
    place to keep one.

    `$FLUTTER_BASE_HREF` is the token `flutter build web` rewrites; leave it.
  -->
  <base href="$FLUTTER_BASE_HREF">

  <meta charset="UTF-8">
  <meta content="IE=Edge" http-equiv="X-UA-Compatible">
  <meta name="description" content="freeq client">

  <meta name="mobile-web-app-capable" content="yes">
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
  <meta name="apple-mobile-web-app-title" content="frq">
  <link rel="apple-touch-icon" href="icons/Icon-192.png">

  <link rel="icon" type="image/png" href="favicon.png"/>

  <title>frq</title>
  <link rel="manifest" href="manifest.json">

  <!--
    WebCrypto for the OAuth client, loaded before the bundle so it is there
    the moment ClojureDart asks. Not `async`: `frq.dpop.web` calls into it
    during sign-in, and a helper that might not have parsed yet is a race
    nobody would enjoy debugging.
  -->
  <script src="frq_dpop.js"></script>
</head>
<body>
  <script src="flutter_bootstrap.js" async></script>
</body>
</html>