ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

forester init: put .gitkeep in assets directory

+1
+1
bin/forester/main.ml
··· 139 139 ["trees"; "assets"] |> List.iter (Eio_util.try_create_dir ~cwd); 140 140 Eio_util.try_create_file ~cwd ~content: default_config_str "forest.toml"; 141 141 Eio_util.try_create_file ~cwd ~content: "output/" ".gitignore"; 142 + Eio_util.try_create_file ~cwd ~content: "" "assets/.gitkeep"; 142 143 Eio_util.try_create_file ~cwd ~content: index_tree_str "trees/index.tree"; 143 144 Reporter.emitf Log "%s" "Initialized forest, try editing `trees/index.tree` and running `forester build`. Afterwards, you can open `output/index.xml` in your browser to view your forest." 144 145