drone/init_docsy.sh

10 lines
202 B
Bash
Raw Normal View History

2020-09-01 13:37:40 +00:00
#!/bin/bash
hugo new site ./
git init
git submodule add https://github.com/google/docsy.git themes/docsy
echo 'theme = "docsy"' >> config.toml
git submodule update --init --recursive
rm init_docsy.sh