Changes between Version 5 and Version 6 of WikiStart


Ignore:
Timestamp:
Apr 15, 2025, 1:56:42 PM (4 days ago)
Author:
Izuru Yakumo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v5 v6  
    1717
    1818{{{
    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
    2021$ cd aya
    2122$ make
     
    6162
    6263{{{
     64#!sh
    6365echo "Generating RSS feed"
    6466
     
    8284}}}
    8385
     86=== Example(s) of site uploading with rsync
     87
     88{{{
     89#!sh
     90rsync -acv --del $AYA_OUTDIR/ www@s1.yakumo.dev:/var/www/technicalmarisa
     91}}}
     92
     93{{{
     94#!perl
     95use warnings;
     96use strict;
     97
     98my $user;
     99my $host;
     100my $dir;
     101
     102$dir = "/var/www/technicalmarisa";
     103$host = "s1.yakumo.dev";
     104$user = "www";
     105
     106system("rsync -acv --delete $ENV{AYA_OUTDIR}/ $user\@$host:$dir");
     107}}}
    84108=== Hooks
    85109There are two special plugin names that are executed every time the build happens - {{{ prehook }}} and {{{ posthook }}}.\\