Add hugo base
This commit is contained in:
parent
ab06eea093
commit
f5bd80cec0
8 changed files with 27 additions and 20 deletions
20
.gitignore
vendored
20
.gitignore
vendored
|
@ -1,22 +1,2 @@
|
||||||
.env
|
.env
|
||||||
.direnv/
|
.direnv/
|
||||||
|
|
||||||
.terraform/*
|
|
||||||
|
|
||||||
*.tfstate
|
|
||||||
*.tfstate.*
|
|
||||||
|
|
||||||
crash.log
|
|
||||||
crash.*.log
|
|
||||||
|
|
||||||
*.tfvars
|
|
||||||
*.tfvars.json
|
|
||||||
|
|
||||||
override.tf
|
|
||||||
override.tf.json
|
|
||||||
*_override.tf
|
|
||||||
*_override.tf.json
|
|
||||||
|
|
||||||
.terraform.tfstate.lock.info
|
|
||||||
.terraformrc
|
|
||||||
terraform.rc
|
|
||||||
|
|
5
hugo/archetypes/default.md
Normal file
5
hugo/archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
+++
|
||||||
|
date = '{{ .Date }}'
|
||||||
|
draft = true
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
+++
|
3
hugo/hugo.toml
Normal file
3
hugo/hugo.toml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
baseURL = 'https://example.org/'
|
||||||
|
languageCode = 'en-us'
|
||||||
|
title = 'My New Hugo Site'
|
19
tofu/.gitignore
vendored
Normal file
19
tofu/.gitignore
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
.terraform/*
|
||||||
|
|
||||||
|
*.tfstate
|
||||||
|
*.tfstate.*
|
||||||
|
|
||||||
|
crash.log
|
||||||
|
crash.*.log
|
||||||
|
|
||||||
|
*.tfvars
|
||||||
|
*.tfvars.json
|
||||||
|
|
||||||
|
override.tf
|
||||||
|
override.tf.json
|
||||||
|
*_override.tf
|
||||||
|
*_override.tf.json
|
||||||
|
|
||||||
|
.terraform.tfstate.lock.info
|
||||||
|
.terraformrc
|
||||||
|
terraform.rc
|
Loading…
Reference in a new issue