From aaed3c64aff651546cefbeb45a8025f7847656b1 Mon Sep 17 00:00:00 2001 From: Benedek Szilvasy Date: Tue, 12 Oct 2021 17:32:47 +0100 Subject: [PATCH] raco: add page (#6955) --- pages/common/raco.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/raco.md diff --git a/pages/common/raco.md b/pages/common/raco.md new file mode 100644 index 000000000..d1fed6460 --- /dev/null +++ b/pages/common/raco.md @@ -0,0 +1,28 @@ +# raco + +> Racket command-line tools. +> More information: . + +- Install a package, automatically installing dependencies: + +`raco pkg install --auto {{package_source}}` + +- Install the current directory as a package: + +`raco pkg install` + +- Build (or rebuild) bytecode, documentation, executables, and metadata indexes for collections: + +`raco setup {{collection1 collection2 ...}}` + +- Run tests in files: + +`raco test {{path/to/tests1.rkt path/to/tests2.rkt ...}}` + +- Search local documentation: + +`raco docs {{search_terms ...}}` + +- Display help: + +`raco help`