Last active
August 29, 2015 14:14
-
-
Save fernandoacorreia/aaa45d00b74baa4c4e85 to your computer and use it in GitHub Desktop.
Launch a Scala Notebook in Domino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -o nounset -o errexit | |
echo "" | |
echo "Downloading scala-notebook" | |
echo "--------------------------" | |
cd /tmp | |
wget -q https://github.com/chrismyang/scala-notebook/releases/download/0.1-SNAPSHOT/notebook-server-assembly-0.1-SNAPSHOT.jar | |
echo "" | |
echo "Downloading welcome notebook" | |
echo "----------------------------" | |
cd /mnt | |
wget -q https://raw.githubusercontent.com/chrismyang/scala-notebook/master/Welcome.snb | |
echo "" | |
echo "Running scala-notebook" | |
echo "----------------------" | |
java -classpath /tmp/notebook-server-assembly-0.1-SNAPSHOT.jar com.bwater.notebook.Server --disable_security | |
echo "" | |
echo "Terminating" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment