# Introducing Fleek

Most of the steps we've covered in this tutorial series have been fairly manual. Wouldn't it be nice if there were a service that did all the busy work for you, so you could focus on hosting great websites on IPFS? That's where Fleek comes in!

The Fleek homepage, showing a "Build on the New Internet" slogan at the top.

Fleek is a service that lets you host a website on IPFS without needing to install anything on your computer or deal with the command-line.

We already know that files and folders on IPFS are content-addressed, meaning you can find them using the hash of their content. If the content changes, then the hash changes too. As we've seen in previous lessons, this can be an issue when it comes to updating a website. A single character change to an HTML file will create an entirely new hash!

Fleek offers a simple workflow. Once you've pushed your changes to git, Fleek builds, pins, and updates your site. The service also integrates well with React, Next.js, Gatsby, Jekyll, Hugo, and a bunch of other popular development frameworks (opens new window). You can also manage your domains through Fleek, and monitor your sites in a similar method to traditional web development.

If you're looking to host a fast website on IPFS, Fleek is a great option! For more information check out Fleek.co (opens new window) and their documentation (opens new window).

# Host a site

If you've never used a service like Fleek, or just need a refresher, this quick guide walks through adding a website to a GitHub repository and linking that repo to your Fleek account.

We're going to re-use the Random Planet Facts site we created in a previous tutorial. If you've been following this tutorial series, you should already have this project ready to go! If you don't, just download the project .zip here (opens new window) or clone this repository (opens new window).

# Upload to GitHub

If you cloned the Random Planet Facts repo above, you don't need to follow this section.

  1. Log into GitHub (opens new window).

  2. Create a new repository and upload the Random Planet Facts project.

  3. Your project repository should look something like this:

    A GitHub repository showing an index.html file, a style.css file, and an image file.

# Add a repository to Fleek

  1. Go to Fleek.co (opens new window) and sign in using your GitHub account. You may need to allow Fleek to access your GitHub profile.

  2. Once logged in, click Add new site.

  3. Select Connect with GitHub and find the site that you want to host on IPFS.

  4. Leave all the options with their default settings. Since we're not dealing with a special framework or a repository with lots of branches we don't have to change anything here.

    Fleek showing the website repository options page.

  5. Click Deploy site. Fleek will add your site into the build queue. Once it's done you can click Verify on IPFS to view your site!

    Deployment information window within Fleek.

# Domain names

Fleek allows you to configure your domain names with your sites on IPFS! No more wrangling with DNSlink or IPNS. You can even buy domains directly through Fleek. Click Add or Buy Domain to get started. Check out the Fleek documentation for more information on how to get your domain linked up → (opens new window)

A black button leading to the domain section of Fleek

# Up next

For the final tutorial in this series, we're going to take a quick look at static-site generators, and how to host them on IPFS.