jcfr
(Jean Christophe Fillion Robin (Kitware))
May 16, 2017, 1:39pm
1
There are no specific items to discuss today. If anyone wants to talk, I will plan on connecting at 10am for few minutes.
In the mean time, do not hesitate to update the agenda: https://www.slicer.org/wiki/Developer_Meetings/20170516
As usual, you can join using this link: http://bit.ly/slicer-hangout-kw
jcfr
(Jean Christophe Fillion Robin (Kitware))
May 16, 2017, 2:21pm
2
@bpaniagua and I were attending the meeting and we discussed what would be the next step to have the slicer.org website content hosted on GitHub and server from the current server and we came up with this approach:
During the weekly developer hangout, @bpaniagua and I talk about this, and we suggest to setup a cron job on the server that is currently serving “slicer.org ” ?
A cron job like this one (running every minutes) should do the work:
SITE_DIR=/path/to/slicer.org
if [[ ! -d $SITE_DIR ]]; then
git clone https://github.com/Slicer/slicer.org $SITE_DIR
fi
cd $SITE_DIR
git fetch origin
git reset --hard origin/gh-pages
1 Like