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
Your Astro project can be deployed to Fleek as a static site.
How to deploy
You can deploy to Fleek through the website UI or using Fleek’s CLI (command line interface).
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
Install the Fleek CLI.
# You need to have Nodejs >= 18.18.2 npm install -g @fleek-platform/cliLog in to your Fleek account from your terminal.
fleek loginRun the build command to generate the static files. By default, these will be located in the
dist/directory.npm run buildInitialize your project. This will generate a configuration file.
fleek sites initYou 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