site

files for beauhilton.com
git clone https://git.beauhilton.com/site.git
Log | Files | Refs

.watch.toml (475B)


      1 [[watch]]
      2 name = "build site on content change"
      3 path = "site"
      4 command = "rm -rf build && soupault"
      5 
      6 [[watch]]
      7 name = "build site on config change"
      8 path = "./soupault.toml"
      9 command = "rm -rf build && soupault"
     10 
     11 [[watch]]
     12 name = "build site on template change"
     13 path = "templates"
     14 command = "rm -rf build && soupault"
     15 
     16 [[watch]]
     17 name = "build site on plugin change"
     18 path = "plugins"
     19 command = "rm -rf build && soupault"
     20 
     21 # to serve: 
     22 # python3 -m http.server --directory build"