Change wording a bit
This commit is contained in:
parent
b3d9fd915c
commit
d242b6bd5f
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "GitLab Pages"
|
title = "GitLab Pages"
|
||||||
weight = 30
|
weight = 40
|
||||||
+++
|
+++
|
||||||
|
|
||||||
We are going to use the GitLab CI runner to automatically publish the site (this CI runner is already included in your repository if you use GitLab.com).
|
We are going to use the GitLab CI runner to automatically publish the site (this CI runner is already included in your repository if you use GitLab.com).
|
||||||
|
|
|
@ -1,27 +1,27 @@
|
||||||
+++
|
+++
|
||||||
title = "Vercel"
|
title = "Vercel"
|
||||||
weight = 20
|
weight = 50
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Vercel (previously zeit) is same as Netlify which makes deployment of site easy.
|
Vercel (previously zeit) is similar to Netlify, making deployment of sites easy.
|
||||||
The sites are hosted by Vercel and automatically deployed whenever we push a
|
The sites are hosted by Vercel and automatically deployed whenever we push a
|
||||||
commit to our selected production branch (e.g, master).
|
commit to our selected production branch (e.g, master).
|
||||||
|
|
||||||
If you don't have an account with Vercel, you can sign up [here](https://vercel.com/signup)
|
If you don't have an account with Vercel, you can sign up [here](https://vercel.com/signup).
|
||||||
|
|
||||||
## Automatic deploys
|
## Automatic deploys
|
||||||
|
|
||||||
Once you sign up you can import your site from a Git provider (Github, GitLab or Bitbucket).
|
Once you sign up you can import your site from a Git provider (Github, GitLab or Bitbucket).
|
||||||
After import you can select settings for your project.
|
After the import, you can set the settings for your project.
|
||||||
|
|
||||||
- Choose Framework Preset as **Other**
|
- Choose Framework Preset as **Other**
|
||||||
- Build command as `zola build` and make sure toggle on Override switch.
|
- Build command as `zola build` and make sure toggle on Override switch.
|
||||||
- By default Vercel chooses output directory as `public`, if you have
|
- By default Vercel chooses output directory as `public`, if you use a different directory then specify output directory.
|
||||||
different out directory then specify output directory.
|
- To add your own domain, go to domain setting in left and add it there.
|
||||||
- To add own domain, go to domain setting in left and add your domain.
|
|
||||||
|
|
||||||
|
|
||||||
All we have to is include a `vercel.json` in our projects root directory by
|
All we have to is include a `vercel.json` in our project's root directory by
|
||||||
specifying `ZOLA_VERSION` we want to use to deploy the site.
|
specifying the `ZOLA_VERSION` we want to use to deploy the site.
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
|
@ -33,4 +33,4 @@ specifying `ZOLA_VERSION` we want to use to deploy the site.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
And now your site is up and running.
|
And your site should now be up and running.
|
||||||
|
|
Loading…
Reference in a new issue