diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-12-03 15:25:39 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-12-03 15:25:39 -0600 |
commit | 8569f2676bfa15fb90522aa5816505b50a2a12f4 (patch) | |
tree | 3128fb080dfa196a39f00529964a079b1adefbe2 /README.org | |
parent | 6fb9529c84a268a291a23ffdd90b8ebd18fa64c0 (diff) | |
download | cleberg.net-8569f2676bfa15fb90522aa5816505b50a2a12f4.tar.gz cleberg.net-8569f2676bfa15fb90522aa5816505b50a2a12f4.tar.bz2 cleberg.net-8569f2676bfa15fb90522aa5816505b50a2a12f4.zip |
feat: add remote publishing
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -24,3 +24,12 @@ When ready to publish, open any of the =.org= files in the project and execute If you want to force emacs to re-publish all files, including files without changes, execute =C-u M-x org-publish-current-project=. + +The resulting files will be published to the =public/= directory within the +repository, which is ignored via the =.gitignore= file. If you wish to publish +the files remotely, you can change the =:publishing-directory= variable in +=publish.el= or do a sync step outside of emacs: + +#+begin_src sh +scp -r public/* ubuntu:/var/www/cleberg.net/ +#+end_src |