docspell/website
2024-01-03 22:38:47 +00:00
..
elm Fixed typo in Main.elm (homepage) 2023-07-05 09:11:19 +02:00
scripts Addon docs 2022-05-21 00:40:26 +02:00
site Allow to configure a region for s3 backend 2023-11-17 21:27:13 +01:00
src/main/scala/docspell/website Merge pull request #2380 from eikek/custom-processing-data 2023-11-15 19:28:03 +00:00
styles Add some docs to file backends 2022-03-13 15:20:33 +01:00
elm-analyse.json Initial website 2020-07-30 20:33:26 +02:00
elm.json Add search to docs 2020-09-30 00:21:21 +02:00
package.json Update dependency postcss-import to v16 2024-01-03 07:29:18 +00:00
postcss.config.js Website redesign 2022-02-03 21:42:09 +01:00
push-docs.sh Merge branch 'current-docs' 2022-05-22 13:43:50 +02:00
README.md Website redesign 2022-02-03 21:42:09 +01:00
shell.nix Update website build 2023-11-13 17:36:02 +01:00
tailwind.config.js Website redesign 2022-02-03 21:42:09 +01:00
yarn.lock Update dependency cssnano to v6.0.3 2024-01-03 22:38:47 +00:00

Website

This is the docspell website and documentation.

Building

The website is created using zola static site generator. The (very minimal) dynamic parts are written in Elm.

Sbt is used to build the site.

Development

Install things by running yarn install.

Open terminal for each script below:

  1. Starting the server
    nix-shell --run "cd site && zola serve"
    
  2. Building the stylesheet
    nix-shell --run ./scripts/run-styles.sh
    
  3. Building some javascript files
    nix-shell --run ./scripts/run-elm.sh
    

Open browser at localhost:1111.

Publishing

The above is great when editing, but doesn't fully reflect what will be finally deployed. To see this, start sbt and change into the website project.

nix-shell website/shell.nix --run sbt
sbt> project website

Build everything and check for dead links:

sbt> zolaBuildTest
sbt> zolaCheck

Testing

sbt> ghpagesSynchLocal

The final site is now generated and a simple http server can be used to see how it will look when deployed.

cd ~/.sbt/ghpages/<some-hash>/com.github.eikek/docspell-website
python -m http.server 1234

Open http://localhost:1234 in a browser.