Skip to content

Latest commit

 

History

History
executable file
·
71 lines (46 loc) · 1.45 KB

File metadata and controls

executable file
·
71 lines (46 loc) · 1.45 KB

Vorta for Borg Backup: Documentation

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.

Development

Docker (Recommended)

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:

Local Setup (Alternative)

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

Building

Production Build

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.

Contributing

Code Formatting

To ensure consistent formatting, you can format Markdown files with Prettier:

# Check formatting
prettier --check **/*.md

# Fix formatting
prettier --write **/*.md

Credits