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 2.7KB

6 years ago
6 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. +++
  2. title = "CLI usage"
  3. weight = 2
  4. +++
  5. Gutenberg only has 3 commands: init, build and serve.
  6. You can view the help of the whole program by running `gutenberg --help` and
  7. the command help by running `gutenberg <cmd> --help`.
  8. ## init
  9. Creates the directory structure used by Gutenberg at the given directory.
  10. ```bash
  11. $ gutenberg init my_site
  12. ```
  13. will create a new folder named `my_site` and the files/folders needed by
  14. Gutenberg.
  15. ## build
  16. This will build the whole site in the `public` directory.
  17. ```bash
  18. $ gutenberg build
  19. ```
  20. You can override the config `base_url` by passing a new URL to the `base-url` flag.
  21. ```bash
  22. $ gutenberg build --base-url $DEPLOY_URL
  23. ```
  24. This is useful for example when you want to deploy previews of a site to a dynamic URL, such as Netlify
  25. deploy previews.
  26. +You can override the default output directory 'public' by passing a other value to the `output-dir` flag.
  27. ```bash
  28. $ gutenberg build --output-dir $DOCUMENT_ROOT
  29. ```
  30. You can also point to another config file than `config.toml` like so - the position of the `config` option is important:
  31. ```bash
  32. $ gutenberg --config config.staging.toml build
  33. ```
  34. ## serve
  35. This will build and serve the site using a local server. You can also specify
  36. the interface/port combination to use if you want something different than the default (`127.0.0.1:1111`).
  37. You can also specify different addresses for the interface and base_url using `-u`/`--base-url`, for example
  38. if you are running Gutenberg in a Docker container.
  39. ```bash
  40. $ gutenberg serve
  41. $ gutenberg serve --port 2000
  42. $ gutenberg serve --interface 0.0.0.0
  43. $ gutenberg serve --interface 0.0.0.0 --port 2000
  44. $ gutenberg serve --interface 0.0.0.0 --base-url 127.0.0.1
  45. $ gutenberg serve --interface 0.0.0.0 --port 2000 --output-dir www/public
  46. ```
  47. The serve command will watch all your content and will provide live reload, without
  48. hard refresh if possible.
  49. Gutenberg does a best-effort to live reload but some changes cannot be handled automatically. If you
  50. fail to see your change or get a weird error, try to restart `gutenberg serve`.
  51. You can also point to another config file than `config.toml` like so - the position of the `config` option is important:
  52. ```bash
  53. $ gutenberg --config config.staging.toml serve
  54. ```
  55. ## Colored output
  56. Any of the three commands will emit colored output if your terminal supports it.
  57. *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).
  58. You can disable this behavior by exporting one of the two following environment variables:
  59. - `NO_COLOR` (the value does not matter)
  60. - `CLICOLOR=0`
  61. Should you want to force the use of colors, you can set the following environment variable:
  62. - `CLICOLOR_FORCE=1`