Changes between Version 5 and Version 6 of WikiStart
- Timestamp:
- Apr 15, 2025, 1:56:42 PM (4 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v5 v6 17 17 18 18 {{{ 19 $ svn co https://svn.chaotic.ninja/svn/aya-yakumo.izuru/trunk aya 19 #!sh 20 $ git clone https://git.yakumo.dev/yakumo.izuru/aya 20 21 $ cd aya 21 22 $ make … … 61 62 62 63 {{{ 64 #!sh 63 65 echo "Generating RSS feed" 64 66 … … 82 84 }}} 83 85 86 === Example(s) of site uploading with rsync 87 88 {{{ 89 #!sh 90 rsync -acv --del $AYA_OUTDIR/ www@s1.yakumo.dev:/var/www/technicalmarisa 91 }}} 92 93 {{{ 94 #!perl 95 use warnings; 96 use strict; 97 98 my $user; 99 my $host; 100 my $dir; 101 102 $dir = "/var/www/technicalmarisa"; 103 $host = "s1.yakumo.dev"; 104 $user = "www"; 105 106 system("rsync -acv --delete $ENV{AYA_OUTDIR}/ $user\@$host:$dir"); 107 }}} 84 108 === Hooks 85 109 There are two special plugin names that are executed every time the build happens - {{{ prehook }}} and {{{ posthook }}}.\\