aboutsummaryrefslogblamecommitdiff
path: root/justfile
blob: f126b52bc2bc05f5e3566a35eba911678706f43c (plain) (tree)
1
2
3
4
5
6
7
8
9
                           
    
              
 
                                               
      
             
 
              
    



                   
 
                                    
                  
                             
 
                           
            
                                       
# Run the local HTTP server
run:
    zola serve

# Generate the content of the site under ./docs
build:
    nix build

# Format files
fmt:
    nix fmt

check:
    nix flake check

# Check that all the links are valid
check-links: build
    lychee ./result/**/*.html

# Update flake dependencies
update-deps:
    nix flake update --commit-lock-file