diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..f4a5874 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,8 @@ +{ + "permissions": { + "allow": [ + "Bash(hugo:*)" + ], + "deny": [] + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9b03111..152eb17 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ # Hugo cache /.hugo_build.lock +static/apt +.working diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 4a83538..ec07ce0 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -16,7 +16,7 @@ buildFuture = false enableEmoji = true -# googleAnalytics = "G-XXXXXXXXX" +googleAnalytics = "G-YSHP7PL9R1" [pagination] pagerSize = 100 diff --git a/content/index.md b/content/_index.md similarity index 85% rename from content/index.md rename to content/_index.md index 8e3ce72..2276f76 100644 --- a/content/index.md +++ b/content/_index.md @@ -2,6 +2,6 @@ title = 'Welcome to Your Wild Cloud!' +++ -Coming Soon! +Coming Soon. [Get started](/get-started) diff --git a/content/get-started/index.md b/content/get-started/index.md index 0bbe328..374317e 100644 --- a/content/get-started/index.md +++ b/content/get-started/index.md @@ -6,6 +6,4 @@ draft = false _The Wild-cloud project is in active development._ -```bash -https://github.com/civil-society-dev/wild-cloud.git -``` +{{< github repo="civil-society-dev/wild-cloud" showThumbnail=true >}} diff --git a/scripts/deploy.sh b/scripts/deploy.sh new file mode 100755 index 0000000..61d948c --- /dev/null +++ b/scripts/deploy.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +hugo build +docker build -t payneio/mywildcloud.org . --file ./Dockerfile +docker push payneio/mywildcloud.org +kubectl rollout restart deployment mywildcloud -n mywildcloud