[Hugo](https://gohugo.io/) is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes building websites fun again.
## Quick Start
### Create a new post
```shell
$ hugo new hello-world.md
```
More info: [Content's Formats](https://gohugo.io/content-management/formats/)
### Run server
```shell
$ hugo server
```
More info: [Hugo Server CLI](https://gohugo.io/commands/hugo_server/)
### Generate static files
```shell
$ hugo
```
More info: [Hugo Build Site](https://gohugo.io/commands/hugo/)
### Deploy to remote sites
```language
$ hugo deploy
```
More info: [Hugo Deployment](https://gohugo.io/commands/hugo_deploy/)
See you will enjoy the Hugo journey and good luck for you!