diff options
| author | Christian Cleberg <[email protected]> | 2025-08-24 23:17:45 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2025-08-24 23:17:45 -0500 |
| commit | 56c63be7996d3eb007c153f33248be5622827ebd (patch) | |
| tree | 13ab6aba7cd1f3e7d3bfc1b6b819e0c62934eced /README.md | |
| parent | 40628ee3e3591fddcacbee5cfd1c1c4b1441b998 (diff) | |
| download | cleberg.net-56c63be7996d3eb007c153f33248be5622827ebd.tar.gz cleberg.net-56c63be7996d3eb007c153f33248be5622827ebd.tar.bz2 cleberg.net-56c63be7996d3eb007c153f33248be5622827ebd.zip | |
fix outdated references in readme for building
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -17,7 +17,7 @@ The main site components are: - A configuration file (`publish.el`) that specifies publishing parameters like base URL, output directories, and export options. - Assets such as images and stylesheets, located in designated subdirectories. -- Utility scripts (e.g., `build.sh`) to facilitate building and deployment. +- Utility scripts (e.g., `build.py`) to facilitate building and deployment. ## Dependencies @@ -90,16 +90,16 @@ Generated site files reside in the designated output directory, ready for deployment. Deployment can be performed by standard file transfer protocols such as `scp` or SFTP. -The `./build.sh` script automates the build process. It can be executed with or +The `./build.py` script automates the build process. It can be executed with or without the `ENV` variable to perform production or development builds respectively. ```shell # Production build script: -ENV=prod ./build.sh - +ENV=prod uv run build.py + # Development build script: -./build.sh +uv run build.py ``` ## Creating New Blog Posts |
