obsidian-database-plugin icon indicating copy to clipboard operation
obsidian-database-plugin copied to clipboard

How to use this plugin?

Open dalewking opened this issue 3 years ago • 1 comments

Doesn't show up in community plugins. Assuming I have to install it manually, but if that is the case, the readme should say that.

dalewking avatar Oct 16 '22 23:10 dalewking

FYI, I did the following to get this to run based off of the build file (but agree it should be in the readme):

VAULT=<obsidian vault>
PLUGIN_DIR=$VAULT/.obsidian/plugins
PROJECT=obsidian-database-plugin
# cd to wherever you want to put the repo
git clone https://github.com/tomaszkiewicz/obsidian-database-plugin.git
cd $PROJECT
tsc -noEmit -skipLibCheck && node esbuild.config.mjs production
mkdir $PLUGIN_DIR/$PROJECT
cp dist/* $PLUGIN_DIR/$PROJECT/
cp manifest.json $PLUGIN_DIR/$PROJECT

Restart Obsidian and enable plugin

sdillard avatar Dec 17 '22 00:12 sdillard