diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index 5cbbb404..f72553fb 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -21,6 +21,7 @@ * [11. Head](learning-frontity/head.md) * [🏗 Architecture](architecture.md) * [🌎 Deployment](deployment/README.md) + * [Deploy Frontity using Qovery](deployment/deploy-using-qovery.md) * [Deploy Frontity using Vercel](deployment/deploy-using-vercel.md) * [Deploy Frontity on Moovweb XDN](deployment/deploy-on-moovweb-xdn.md) * [Deploy Frontity on Heroku](deployment/deploy-on-heroku.md) diff --git a/docs/deployment/README.md b/docs/deployment/README.md index dfaa0292..c3310be7 100644 --- a/docs/deployment/README.md +++ b/docs/deployment/README.md @@ -16,6 +16,7 @@ Which is used to launch the Frontity app in production. Here you have some guides about how to deploy a Frontity app in some popular hostings: +* [Deploy Frontity using Qovery](deploy-using-qovery.md) * [Deploy Frontity using Vercel](deploy-using-vercel.md) * [Deploy Frontity on Moovweb XDN](deploy-on-moovweb-xdn.md) * [Deploy Frontity on Heroku](deploy-on-heroku.md) diff --git a/docs/deployment/deploy-on-qovery.md b/docs/deployment/deploy-on-qovery.md new file mode 100644 index 00000000..472f4d29 --- /dev/null +++ b/docs/deployment/deploy-on-qovery.md @@ -0,0 +1,54 @@ +[Qovery](https://qovery.com) is a fully-managed cloud platform that runs on your AWS, GCP, Azure and Digital Ocean account where you can host static sites, backend APIs, databases, cron jobs, and all your other apps in one place. + +Qovery include the following features: + +- Continuous, automatic builds & deploys from GitHub, Bitbucket, and GitLab. +- Automatic SSL certificates through [Let's Encrypt](https://letsencrypt.org). +- Free managed PostgreSQL. +- Free SSD storage. +- Unlimited collaborators. +- Unlimited [custom domains](https://docs.qovery.com/guides/getting-started/setting-custom-domain/). + +## Prerequisites + +This guide assumes you already have a Frontify project to deploy. If you need a project, use the [Quick Start][/docs/getting-started/quick-start-guide.md] to get started. + +## Setup + +Follow the procedure below to set up a Frontify on Qovery: + +### 1. Create a Qovery account. + +Visit the [Qovery dashboard](https://console.qovery.com) to create an account if you don't already have one. + +### 2. Create a project + +Click on "Create a new project" and give a name to your project. + +Click on "Next". + +### 3. Add an application + +Click on "Create an application" then choose "I have an application" and select your GitHub or GitLab repository where your Frontify app is located. + +Click on "Next". + +Skip adding services. + +Click on "Deploy". + +## Deploy + +Your app should be deployed. You can see the status in real time by clicking on deployment logs. + +## Continuous deploys + +Now that Qovery is connected to your repo, it will **automatically build and publish your site** any time you push to GitHub. + +## Custom domains + +Add your own domains to your site easily using Qovery's [custom domains](https://docs.qovery.com/guides/getting-started/setting-custom-domain/) guide. + +## Support + +Chat with Qovery developers on [Discord](https://discord.qovery.com) if you need help. \ No newline at end of file