The project devcontainer can be used. Check out Get started with development Containers in Visual Studio Code if you're not familar with devcontainers.
Otherwise you can quickly build the site with the following commands:
julia> using Pkg; Pkg.instantiate(); Pkg.precompile();
julia> using Xranklin; Xranklin.serve();
The LiveServer will begin listening on http://localhost:8000/ !
Any changes to the CSS should be made to the SCSS files in _sass/
and compiled using Sass.jl
as follows:
Sass.compile_file("style.scss", "../_css/celeste.min.css"; output_style = Sass.compressed)
All the Franklin.jl
related changes are in _sass/adjust.scss
Using Xranklin under the hood.
Based on the wonderful Celeste by @nicoelayda.