This repository contains the documentation website for vorta.borgbase.com. Feel free to open a pull request if you notice any mistake or would like to add something.
The easiest way to run the site locally is using Docker:
# Start development server with live reload
docker-compose up develop
# Build production site
docker-compose run build
The development server will be available at:
- Site: http://localhost:4000
- LiveReload: http://localhost:35729
If you prefer to run Jekyll locally:
# Install dependencies
gem install --user-install jekyll bundler
# Install project dependencies
bundle install
# Start development server
bundle exec jekyll serve
To build the static site for production:
# Using Docker
docker-compose run build
# Using local Jekyll
JEKYLL_ENV=production bundle exec jekyll build
The built site will be available in the _site/
directory.
To ensure consistent formatting, you can format Markdown files with Prettier:
# Check formatting
prettier --check **/*.md
# Fix formatting
prettier --write **/*.md
- Theme: Just the Docs
- Colors: Vuetify Color Palette