Deploy your Astro Site to Fleek
You can use Fleek to deploy a static Astro site to their edge-optimized decentralized network.
This guide gives a complete walkthrough of deploying your Astro site to Fleek using the Fleek UI and CLI.
Project Configuration
Заголовок раздела «Project Configuration»Your Astro project can be deployed to Fleek as a static site.
How to deploy
Заголовок раздела «How to deploy»You can deploy to Fleek through the website UI or using Fleek’s CLI (command line interface).
Platform UI Deployment
Заголовок раздела «Platform UI Deployment»-
Create a Fleek account.
-
Push your code to your online Git repository (GitHub).
-
Import your project into Fleek.
-
Fleek will automatically detect Astro and then you can configure the correct settings.
-
Your application is deployed!
Fleek CLI
Заголовок раздела «Fleek CLI»-
Install the Fleek CLI.
Окно терминала # You need to have Nodejs >= 18.18.2npm install -g @fleek-platform/cli -
Log in to your Fleek account from your terminal.
Окно терминала fleek login -
Run the build command to generate the static files. By default, these will be located in the
dist/directory.Окно терминала npm run build -
Initialize your project. This will generate a configuration file.
Окно терминала fleek sites init -
You will be prompted to either create a new Fleek Site or use an existing one. Give the site a name and select the directory where your project is located.
-
Deploy your site.
Окно терминала fleek sites deploy