Open dalewking opened 2 years ago
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
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.