init lab bin

This commit is contained in:
ackman678
2019-02-05 19:30:40 -08:00
commit e86353cd6b
15 changed files with 456 additions and 0 deletions

22
woola Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
#helper startup script for woola
appPath="$HOME/projects/dev/woola"
configFile=$HOME/.config/woola/config.js
if [[ -e $configFile ]] && [[ ! -e config.js ]]; then
ln -s $configFile config.js
fi
if [[ ! -d css ]]; then
ln -s $HOME/projects/dev/libcss css
fi
#if [[ ! -d js ]]; then
# ln -s $appPath/js js
#fi
#if [[ ! -d figures ]]; then
# ln -s $HOME/figures figures
#fi
node $appPath/lib/index.js