diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..87b8e43 --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,17 @@ +name: Pages +on: + push: + branches: + - gh-pages +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + - name: Build and deploy + uses: shalzz/zola-deploy-action@v0.18.0 + env: + BUILD_DIR: docs + PAGES_BRANCH: gh-pages + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc02dac --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Simple Build Tool +target/ +/lib_managed/ +/src_managed/ +/project/boot/ +.history +.cache +### Scala template +*.class +*.log + +# sbt specific +/.lib/ +/dist/* +/project/plugins/project/ +/.bsp/ + +# IDEA specific +/.idea/ +target-idea/ +*.iml + +# EVE specific +/sde/ + +# Vite +/ui/.vite/ + +# Requests +/requests/*.private.env.json diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..f57265e --- /dev/null +++ b/config.toml @@ -0,0 +1,16 @@ +# The URL the site will be built for +base_url = "https://control-tower.space" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = true + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here