Add github pages site with improved install script (#597)

- Add a very basic github pages site that links to the github repo.
- Add new install script in the root of the site
- Document the new script in the readme
This commit is contained in:
Casey Rodarmor 2020-02-20 06:32:06 -08:00 committed by GitHub
parent dcc98abdf8
commit 33ad82f5c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 202 additions and 11 deletions

View File

@ -97,21 +97,12 @@ hello:
Pre-built binaries for Linux, MacOS, and Windows can be found on https://github.com/casey/just/releases[the releases page].
You can use the following command to download the latest binary for MacOS or Windows, just replace `DESTINATION_DIRECTORY` with the directory where you'd like to put `just`:
You can use the following command on Linux, MacOS, or Windows to download the latest release, just replace `DEST` with the directory where you'd like to put `just`:
```sh
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- --git casey/just --to DESTINATION_DIRECTORY
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to DEST
```
On Linux, use:
```sh
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- --git casey/just --target x86_64-unknown-linux-musl --to DESTINATION_DIRECTORY
```
== Quick Start
See xref:Installation[] for how to install `just` on your computer. Try running `just --version` to make sure that it's installed correctly.

1
docs/CNAME Normal file
View File

@ -0,0 +1 @@
just.systems

55
docs/index.css Normal file
View File

@ -0,0 +1,55 @@
:root {
--width-target: calc(100vw / 6);
--height-target: calc(100vh / 3);
--size: min(var(--width-target), var(--height-target));
--margin-vertical: calc((100vh - var(--size) * 2) / 2);
--margin-horizontal: calc((100vw - var(--size) * 5) / 2);
}
* {
margin: 0;
padding: 0;
}
html {
background-color: black;
color: white;
overflow: hidden;
text-align: center;
}
a {
color: white;
text-decoration: none;
}
#just {
font-family: sans-serif;
font-size: var(--size);
line-height: var(--size);
display: grid;
grid-template-columns: repeat(4, 1fr);
margin-bottom: var(--margin-vertical);
margin-left: var(--margin-horizontal);
margin-right: var(--margin-horizontal);
margin-top: var(--margin-vertical);
}
#just > * {
height: var(--size);
width: var(--size);
}
#subtitle {
font-style: italic;
}
/* just is an isogram */
#j:after { content: 'j'; }
#j:hover:after { content: 'J'; }
#u:after { content: 'u'; }
#u:hover:after { content: 'U'; }
#s:after { content: 's'; }
#s:hover:after { content: 'S'; }
#t:after { content: 't'; }
#t:hover:after { content: 'T'; }

21
docs/index.html Normal file
View File

@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Just: A Command Runner</title>
<link href="index.css" rel="stylesheet" type="text/css">
</head>
<body>
<a href="https://github.com/casey/just">
<div id="just">
<div id="j"></div>
<div id="u"></div>
<div id="s"></div>
<div id="t"></div>
</div>
<div id="subtitle">a command runner</div>
</a>
</body>
</html>
<!-- Love, Casey -->

123
docs/install.sh Executable file
View File

@ -0,0 +1,123 @@
#!/usr/bin/env bash
set -eu
help() {
cat <<'EOF'
Install a binary release of a just hosted on GitHub
Usage:
install [options]
Options:
-h, --help Display this message
-f, --force Force overwriting an existing binary
--tag TAG Tag (version) of the crate to install (default <latest release>)
--to LOCATION Where to install the binary (default ~/.cargo/bin)
EOF
}
git=casey/just
crate=just
url=https://github.com/casey/just
releases=$url/releases
case `uname -s` in
Darwin) target=x86_64-apple-darwin;;
Linux) target=x86_64-unknown-linux-musl;;
*) target=x86_64-pc-windows-msvc;;
esac
say() {
echo "install: $1"
}
say_err() {
say "$1" >&2
}
err() {
if [ ! -z ${td-} ]; then
rm -rf $td
fi
say_err "ERROR $1"
exit 1
}
need() {
if ! command -v $1 > /dev/null 2>&1; then
err "need $1 (command not found)"
fi
}
force=false
while test $# -gt 0; do
case $1 in
--force | -f)
force=true
;;
--help | -h)
help
exit 0
;;
--tag)
tag=$2
shift
;;
--to)
dest=$2
shift
;;
*)
;;
esac
shift
done
# Dependencies
need basename
need curl
need install
need mkdir
need mktemp
need tar
# Optional dependencies
if [ -z ${tag-} ]; then
need cut
need rev
fi
if [ -z ${dest-} ]; then
dest="$HOME/.cargo/bin"
fi
if [ -z ${tag-} ]; then
tag=$(curl -s "$releases/latest" | cut -d'"' -f2 | rev | cut -d'/' -f1 | rev)
fi
archive="$releases/download/$tag/$crate-$tag-$target.tar.gz"
say_err "Repository: $url"
say_err "Crate: $crate"
say_err "Tag: $tag"
say_err "Target: $target"
say_err "Destination: $dest"
say_err "Archive: $archive"
td=$(mktemp -d || mktemp -d -t tmp)
curl -sL $archive | tar -C $td -xz
for f in $(ls $td); do
test -x $td/$f || continue
if [ -e "$dest/$f" ] && [ $force = false ]; then
err "$f already exists in $dest"
else
mkdir -p $dest
install -m 755 $td/$f $dest
fi
done
rm -rf $td