2024-06-21 23:08:58 +05:30
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2025-03-02 13:50:52 +05:30
|
|
|
# start with a clean slate
|
2024-12-06 18:47:18 +05:30
|
|
|
rm -rf ./public/cosmicflow-html/
|
2024-06-21 23:08:58 +05:30
|
|
|
# generate the html and gemini versions of the site using org-publish
|
2024-08-17 23:54:55 +05:30
|
|
|
emacs -Q --batch -l create-site.el
|
2024-12-06 16:36:42 +05:30
|
|
|
|
2024-12-06 18:28:06 +05:30
|
|
|
|
2025-03-02 13:50:52 +05:30
|
|
|
# run script to copy the generated latex images to the appropiate subdirectories
|
|
|
|
./copy_latex_images.sh
|
2025-02-10 03:21:14 +05:30
|
|
|
|
2025-03-02 13:50:52 +05:30
|
|
|
# Generate the exocortex
|
|
|
|
./build_exocortex.sh
|
2025-02-10 03:21:14 +05:30
|
|
|
|
2025-03-02 13:50:52 +05:30
|
|
|
# Copy relavent pics to blog subdirectories
|
|
|
|
./copy-pics.sh
|
2024-12-06 18:28:06 +05:30
|
|
|
|