diff options
Diffstat (limited to 'local.sh')
-rwxr-xr-x | local.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/local.sh b/local.sh new file mode 100755 index 0000000..c27632b --- /dev/null +++ b/local.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +read -p "Enter the ROAM_PATH: " ROAM_PATH +read -p "Enter the ROAM_DB_FILE: " ROAM_DB_FILE +ROAM_DB_PATH=$ROAM_PATH/$ROAM_DB_FILE +ROAM_IMG_PATH=$ROAM_PATH/img + +# If org-roam-ui directory does not exists, clone the org-roam-ui repository. +if [ ! -d "org-roam-ui" ]; then + git clone -b publish-org-roam-ui https://github.com/ikoamu/org-roam-ui +fi + +# Generate data for org-roam-ui +npm install +npm run generate:graphdata --script_params=$ROAM_DB_PATH +./create_notes.sh $ROAM_PATH +npm run generate:search + +# Copy files to the org-roam-ui directory +cp -f searchdata.json org-roam-ui/components/Search/ +if [ -d $ROAM_IMG_PATH ]; then + cp -r $ROAM_IMG_PATH org-roam-ui/public +fi + +pushd org-roam-ui +yarn install +pushd standalone +./build-standalone-server.sh ../.. +mv out ../../ +popd +popd
\ No newline at end of file |