diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-08 12:16:10 +0100 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-08 12:16:10 +0100 |
commit | 77ff5b2ec163cc8010f2b0727fef293796819d60 (patch) | |
tree | 2d3e93603ec105b2db81d5e399f72294f8d40469 /pages/guide | |
parent | 70a92a2f90720f9f9af62b810f2e714c54c27896 (diff) | |
download | lustre-77ff5b2ec163cc8010f2b0727fef293796819d60.tar.gz lustre-77ff5b2ec163cc8010f2b0727fef293796819d60.zip |
:memo: Note that documentation is written for v4 not v3.
Diffstat (limited to 'pages/guide')
-rw-r--r-- | pages/guide/01-quickstart.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pages/guide/01-quickstart.md b/pages/guide/01-quickstart.md index df7f7a8..730e647 100644 --- a/pages/guide/01-quickstart.md +++ b/pages/guide/01-quickstart.md @@ -39,6 +39,10 @@ To get started, let's create a new Gleam application and add Lustre as a depende $ gleam new app && cd app && gleam add lustre ``` +> **Note**: this guide is written for Lustre v4. The latest stable release of +> Lustre is v3. To follow along with this guide, you need to _manually_ edit your +> `gleam.toml` and change the required version of lustre to `"4.0.0-rc.2"`. + By default, Gleam builds projects for the Erlang target unless told otherwise. We can change this by adding a `target` field to the `gleam.toml` file generated in the root of the project. |