You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cli-usage.md 3.9KB

7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. +++
  2. title = "CLI usage"
  3. weight = 2
  4. +++
  5. Zola only has 4 commands: `init`, `build`, `serve` and `check`.
  6. You can view the help of the whole program by running `zola --help` and
  7. the command help by running `zola <cmd> --help`.
  8. ## init
  9. Creates the directory structure used by Zola at the given directory after asking a few basic configuration questions.
  10. Any choices made during those prompts can easily be changed by modifying the `config.toml`.
  11. ```bash
  12. $ zola init my_site
  13. $ zola init
  14. ```
  15. If the `my_site` folder already exists, Zola will only populate it if it does not contain non-hidden files (dotfiles are ignored). If no `my_site` argument is passed, Zola will try to populate the current directory.
  16. You can initialize a git repository and a Zola site directly from within a new folder:
  17. ```bash
  18. $ git init
  19. $ zola init
  20. ```
  21. ## build
  22. This will build the whole site in the `public` directory after deleting it.
  23. ```bash
  24. $ zola build
  25. ```
  26. You can override the config `base_url` by passing a new URL to the `base-url` flag.
  27. ```bash
  28. $ zola build --base-url $DEPLOY_URL
  29. ```
  30. This is useful for example when you want to deploy previews of a site to a dynamic URL, such as Netlify
  31. deploy previews.
  32. You can override the default output directory 'public' by passing a other value to the `output-dir` flag.
  33. ```bash
  34. $ zola build --output-dir $DOCUMENT_ROOT
  35. ```
  36. You can also point to another config file than `config.toml` like so - the position of the `config` option is important:
  37. ```bash
  38. $ zola --config config.staging.toml build
  39. ```
  40. By defaults, drafts are not loaded. If you wish to include them, pass the `--drafts` flag.
  41. ## serve
  42. This will build and serve the site using a local server. You can also specify
  43. the interface/port combination to use if you want something different than the default (`127.0.0.1:1111`).
  44. You can also specify different addresses for the interface and base_url using `-u`/`--base-url`, for example
  45. if you are running zola in a Docker container.
  46. Use the `--open` flag to automatically open the locally hosted instance in your
  47. web browser.
  48. In the event you don't want zola to run a local webserver, you can use the `--watch-only` flag.
  49. Before starting, it will delete the public directory to ensure it starts from a clean slate.
  50. ```bash
  51. $ zola serve
  52. $ zola serve --port 2000
  53. $ zola serve --interface 0.0.0.0
  54. $ zola serve --interface 0.0.0.0 --port 2000
  55. $ zola serve --interface 0.0.0.0 --base-url 127.0.0.1
  56. $ zola serve --interface 0.0.0.0 --port 2000 --output-dir www/public
  57. $ zola serve --watch-only
  58. $ zola serve --open
  59. ```
  60. The serve command will watch all your content and will provide live reload, without
  61. hard refresh if possible.
  62. Zola does a best-effort to live reload but some changes cannot be handled automatically. If you
  63. fail to see your change or get a weird error, try to restart `zola serve`.
  64. You can also point to another config file than `config.toml` like so - the position of the `config` option is important:
  65. ```bash
  66. $ zola --config config.staging.toml serve
  67. ```
  68. By defaults, drafts are not loaded. If you wish to include them, pass the `--drafts` flag.
  69. ### check
  70. The check subcommand will try to build all pages just like the build command would, but without writing any of the
  71. results to disk. Additionally, it will also check all external links present in Markdown files by trying to fetch
  72. them (links present in the template files will not be checked).
  73. By defaults, drafts are not loaded. If you wish to include them, pass the `--drafts` flag.
  74. ## Colored output
  75. Any of the three commands will emit colored output if your terminal supports it.
  76. *Note*: coloring is automatically disabled when the output is redirected to a pipe or a file (ie. when the standard output is not a TTY).
  77. You can disable this behavior by exporting one of the two following environment variables:
  78. - `NO_COLOR` (the value does not matter)
  79. - `CLICOLOR=0`
  80. Should you want to force the use of colors, you can set the following environment variable:
  81. - `CLICOLOR_FORCE=1`