You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: The home page for developer documentation for IPFS, the InterPlanet
5
5
6
6
# Welcome to the IPFS Docs
7
7
8
-
IPFS is a set of building blocks for a better web. Open protocols to make your data smarter: content-addressed, verifiable, and unstoppable.
8
+
The InterPlanetary File System (IPFS) is a set of building blocks for a better web. Open protocols to make your data smarter: content-addressed, verifiable, and unstoppable.
9
9
10
10
On a more technical level, IPFS is a set of open protocols for addressing, routing, and transferring data on the web, built on the ideas of [content addressing](concepts/glossary.md#content-addressing) and peer-to-peer networking.
11
11
@@ -28,6 +28,9 @@ Provide data to the IPFS network with IPFS Desktop or a pinning service:
28
28
29
29
-[Install IPFS Desktop which bundles an IPFS node (Kubo) and a UI to manage files, peers, and explore content on IPFS](./install/ipfs-desktop.md).
30
30
-[Publish content to the IPFS network with IPFS Desktop](./how-to/desktop-app.md).
31
+
32
+
### Deploy static sites to the IPFS network
33
+
31
34
-[Deploy static sites to the IPFS network with a GitHub Action](./how-to/websites-on-ipfs/deploy-github-action.md).
This guide will walk you through the process of configuring a [GitHub Actions](https://docs.github.com/en/actions) workflow to deploy a repository containing a static site or app to IPFS using the [IPFS Deploy Action](https://github.com/ipfs/ipfs-deploy-action).
10
+
This guide will walk you through the process of configuring a [GitHub Actions](https://docs.github.com/en/actions) workflow to deploy a repository containing a static site or app to IPFS using the [IPFS Deploy Action](https://github.com/ipshipyard/ipfs-deploy-action).
11
11
12
12
By the end of this guide, your web app (or just a static website) will be deployed to IPFS automatically when you push to your repository. It will also deploy pull request previews for each commit, and provide some other developer experience features, like commit status updates with the CID of the build, and a comment on pull requests with the IPFS CID and preview links.
13
13
@@ -21,7 +21,7 @@ To see what this looks like in a real-world example, check out the [IPNS Inspect
21
21
22
22
## What is the IPFS Deploy Action?
23
23
24
-
The [IPFS Deploy Action](https://github.com/ipfs/ipfs-deploy-action) is a [composite action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action), that can be called as a step in a [GitHub Actions workflow](https://docs.github.com/en/actions/writing-workflows), and combines the following features:
24
+
The [IPFS Deploy Action](https://github.com/ipshipyard/ipfs-deploy-action) is a [composite action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action), that can be called as a step in a [GitHub Actions workflow](https://docs.github.com/en/actions/writing-workflows), and combines the following features:
25
25
26
26
- 📦 Merkleizes your static site into a [CAR](../../concepts/glossary.md#car) file
27
27
- 🚀 Uploads CAR file to either [Storacha](https://storacha.network/), [IPFS Cluster](https://ipfscluster.io/), or [Kubo](https://github.com/ipfs/kubo#readme)
@@ -300,5 +300,5 @@ This URL uses subdomain resolution (where the CID has its own subdomain), which
300
300
If you encounter any issues:
301
301
302
302
1. Check the GitHub Actions run logs for detailed error messages
303
-
2. Review the [action's README](https://github.com/ipfs/ipfs-deploy-action) for updates
304
-
3. Open an issue in the [action's repository](https://github.com/ipfs/ipfs-deploy-action/issues/new) with detailed information about your setup and the problem you're experiencing
303
+
2. Review the [action's README](https://github.com/ipshipyard/ipfs-deploy-action) for updates
304
+
3. Open an issue in the [action's repository](https://github.com/ipshipyard/ipfs-deploy-action/issues/new) with detailed information about your setup and the problem you're experiencing
Copy file name to clipboardExpand all lines: docs/install/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,9 @@ Anyone can use IPFS to store files in a _decentralized_ way. The easiest way to
19
19
20
20
If your browser doesn't support IPFS yet, you can install an IPFS companion extension that will let you view decentralized web content! [Learn more →](./ipfs-companion.md)
21
21
22
-
### Publish files with a pinning service
22
+
### Deploy static sites to the IPFS network with a GitHub Action
23
23
24
-
Do you want to quickly and easily publish content with IPFS without complex tools? See the [Publish with IPFS quickstart](../quickstart/publish.md), where you'll learn how to use third-party pinning services to pin and provide files to the IPFS network.
24
+
Do you want to quickly and easily automate the deployment of static websites to the IPFS network? See the [Deploy static sites to the IPFS network with GitHub Actions](../how-to/websites-on-ipfs/deploy-github-action.md), where you'll learn how to use [GitHub Actions](https://github.com/ipshipyard/ipfs-deploy-action)to automatically deploy static websites to the IPFS network.
25
25
26
26
## Infrastructure Tools
27
27
@@ -43,7 +43,7 @@ If you need to run your own [delegated routing](../concepts/glossary.md#delegate
43
43
44
44
## Software Development
45
45
46
-
### Helia SDK for JS
46
+
### Helia for TypeScript/JavaScript
47
47
48
48
[Helia](https://github.com/ipfs/helia) is a new implementation of IPFS in JavaScript that is designed to be more modular and lightweight than the [deprecated js-ipfs project](https://github.com/ipfs/js-ipfs).
0 commit comments