10 lines
210 B
Bash
Executable File
10 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
hugo new site --force ./
|
|
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
|
|
|