10 lines
202 B
Bash
10 lines
202 B
Bash
|
#!/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
|
||
|
|