Page MenuHomePhabricator

[Story] Migrate shex-simple from rawgit to Toolforge
Closed, ResolvedPublic

Description

RawGit is shutting down. shex-simple needs to move somewhere else; from our point of view, Toolforge would be an excellent choice (less privacy concerns if we’re going to send people there per T216816). Ultimately this decision is probably up to @ericP.

Event Timeline

Lucas_Werkmeister_WMDE renamed this task from Migrate shex-simple from rawgit to Toolforge to [Story] Migrate shex-simple from rawgit to Toolforge.Feb 28 2019, 2:16 PM
Lucas_Werkmeister_WMDE created this task.

Well, the Toolforge instance is up at https://tools.wmflabs.org/shex-simple/wikidata/. Automatic updates should be working, but I guess we won’t know for sure until the next update to the repository.

Setup commands:

git clone --bare https://github.com/shexSpec/shex.js.git
mkdir -p ~/public_html
git -C shex.js.git/ worktree add ~/public_html/master master
git -C shex.js.git/ worktree add ~/public_html/wikidata wikidata

cat > ~/.lighttpd.conf << 'EOF'
url.redirect = ( "(wikidata|master)/$" => "doc/shex-simple.html" )
EOF
webservice --backend=kubernetes php7.2 start

cat > ~/update.sh << 'EOF'
#!/bin/sh
git -C shex.js.git fetch origin master wikidata
for branch in master wikidata; do
    git -C public_html/"$branch" reset --hard
done
EOF
chmod +x ~/update.sh

{ crontab -l; printf '%s\n' '0 * * * * ~/update.sh'; } | crontab -

Any bright ideas where I could document those more permanently?

Well, that wiki is for the whole shex.js implementation, I’m not sure if that’s a good place for this specific installation.