roc/www
Anton-4 568343f2e7
Update tutorial _
Support for e.g. `RunErr : _` got removed 4 months ago. [More context](472047806).

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
2024-09-22 16:43:37 +02:00
..
content Update tutorial _ 2024-09-22 16:43:37 +02:00
public Add concatMap and equivalent of zip 2024-07-30 21:37:25 +12:00
scripts minor improvements 2024-01-12 21:10:42 +01:00
build-dev-local.sh minor improvements 2024-01-12 21:10:42 +01:00
build.sh avoid hiding segfaults 2024-09-03 13:47:31 +02:00
InteractiveExample.roc Update homepage example to use Json.utf8 2024-05-07 11:23:19 -04:00
main.roc roc format 2024-09-04 10:48:19 +10:00
netlify.sh update llvm and zig version in all locations 2023-10-23 13:50:32 -07:00
netlify.toml Move CSP to just /packages/ 2023-11-10 20:18:13 -05:00
optimize.sh Fix typo in optimize.sh 2023-11-22 01:02:02 +09:00
README.md Fix a path typo in www/README 2024-05-09 01:42:48 -06:00

www.roc-lang.org

Prerequisites

  • Linux or MacOS operating system, Windows users can use linux through WSL.
  • Install git
  • Install nix

Building the website from scratch

git clone https://github.com/roc-lang/roc.git
cd roc
nix develop
./www/build.sh
# make the roc command available 
export PATH="$(pwd)/target/release/:$PATH"
bash ./www/build-dev-local.sh

Open http://0.0.0.0:8080 in your browser.

After you've made a change locally

In the terminal where the web server is running:

  1. kill the server with Ctrl+C
  2. re-run the build script
  3. refresh the page in your browser

To view the website after you've made a change, execute:

bash build-dev-local.sh

Open http://0.0.0.0:8080 in your browser.