-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(ci): additional pin to scaleway #107
Changes from all commits
3c68ca3
722133c
51f589a
add9803
750a610
21ea572
9e0e658
4fdf18c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- | ||
|
||
This HTML page initializes IPFS Service Worker Gateway. | ||
|
||
The HTTP server behind this HTTP URL does not host this website. | ||
Instead, it sends basic website code along with JavaScript. The JS sets | ||
up a tool called IPFS Service Worker Gateway in the user's browser and | ||
uses JavaScript version of IPFS (https://helia.io/) to get IPFS blocks | ||
from content providers. | ||
|
||
CID hash verification and data assembly happens in the browser. | ||
|
||
Learn more about it here: https://github.com/ipfs-shipyard/helia-service-worker-gateway | ||
|
||
--> | ||
Comment on lines
+4
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ℹ️ @2color fysa added this disclaimer for curl/cli devs and users expecting deserialized payload, feel free to adjust in follow-up PR. |
||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<title><%= htmlWebpackPlugin.options.title %></title> | ||
|
||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/[email protected]/css/tachyons.min.css" | ||
/> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/ipfs.css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/tachyons.min.css" integrity="sha256-MgEf5i1a74lVzhT+1R6mBbWCUeUaxC8sQTaN5GY+CoI=" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/ipfs.css" integrity="sha256-tlU/gvVvLjSbTOfSZyCzuQxY8QcmHPtJJ1oTXilA9gk=" crossorigin="anonymous"> | ||
Comment on lines
+23
to
+24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ℹ️ I needed to produce new |
||
</head> | ||
<body> | ||
<div id="root" class="montserrat f5"></div> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ℹ️ Skipping on any preexisting pins for the CID before pinning it again to avoid HTTP 409 error due to duplicate pin. It would often happen in
main
branch when./dist
output does not change (e.g. commits with docs edits).