Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dsebastien committed May 14, 2024
1 parent 6296221 commit 7201cde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions TEMPLATE_USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Modify package.json (name, description, scripts, PLUGIN_NAME, etc)
- Modify the plugin name in manifest.json
- Modify the plugin name in .github/workflows/release.yml
- Rename the plugin class in apps/plugin/src/app/plugin.ts from `MyPlugin` to the name of your plugin
- Install the project dependencies using ´npm install`
- Run `npx nx connect` to generate a Nx Cloud access token, add, commit and push the changes. After that, make sure to connect the workspace to your Nx cloud organization
- Grant Read/Write access for workflows (pipelines). Go to https://github.com/<user>/<project>/settings/actions and select "Read and write permissions" under "Workflow permissions"
Expand Down
2 changes: 1 addition & 1 deletion apps/plugin/src/app/settingTab/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class SettingsTab extends PluginSettingTab {
});
const imgEl = linkEl.createEl('img');
imgEl.src =
'https://github.com/dsebastien/obsidian-plugin-template/blob/master/apps/plugin/src/assets/buy-me-a-coffee.png?raw=true';
'https://github.com/dsebastien/obsidian-plugin-template/raw/main/apps/plugin/src/assets/buy-me-a-coffee.png';
imgEl.alt = 'Buy me a coffee';
imgEl.width = width;
}
Expand Down

0 comments on commit 7201cde

Please sign in to comment.