init commit

This commit is contained in:
ysandler
2026-01-22 23:03:49 -06:00
commit 1eae04fc60
21 changed files with 1688 additions and 0 deletions

16
install.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
set -e
INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
echo "Building doks..."
make build
echo "Installing to $INSTALL_DIR..."
if [ -w "$INSTALL_DIR" ]; then
mv doks "$INSTALL_DIR/"
else
sudo mv doks "$INSTALL_DIR/"
fi
echo "Done! doks $(doks -v) installed to $INSTALL_DIR/doks"