This app shows how to implement a digital asset manager (DAM). Make the images, logos, and other assets you need available directly in a Miro board.
digital_asset_manager_demo.mov
- Included Features
- Tools and Technologies
- Prerequisites
- Associated Developer Tutorial
- Run the app locally
- Folder Structure
- License
- You have a Miro account.
- You're signed in to Miro.
- Your Miro account has a Developer team.
- Your development environment includes Node.js 14.13 or a later version.
- You have a Digital Asset Manager (such as Bynder) and a Netlify account.
- All examples use
npm
as a package manager andnpx
as a package runner.
To view a more in depth developer tutorial of this app (including code explanations) see the digital asset manager tutorial and search and filter tutorial on Miro's Developer documentation.
- Run
npm install
to install dependencies. - Run
npm start
to start developing.
Your URL should be similar to this example:http://localhost:3000
- Open the app manifest editor by clicking Edit in Manifest.
In the app manifest editor, configure the app as follows and click save:
# See https://developers.miro.com/docs/app-manifest on how to use this
appName: Digital Asset Manager
sdkVersion: SDK_V2
sdkUri: http://localhost:3000
scopes:
- boards:read
- boards:write
- Go back to your app home page, and under the
Permissions
section, you will see a blue button that saysInstall app and get OAuth token
. Click that button. Then click onAdd
as shown in the video below.
⚠️ We recommend to install your app on a developer team while you are developing or testing apps.⚠️
install-drag-and-drop.mov
- Go to your developer team, and open your boards.
- Click on the plus icon from the bottom section of your left sidebar. If you hover over it, it will say
More apps
. - Search for your app
Digital Asset Manager
or whatever you chose to name it. Click on your app to use it, as shown in the video below.
search-for-app.mov
.
├── netlify/functions <-- contains netlify functions
├── src
│ └── assets
│ └── components
│ └── panel
│ └── utils
│ └── styles
├── netlify.toml
├── tscongif.json
├── viteconfig.json
└── index.html <-- The app entry point. This is the value you assign to 'sdkUri' in the app manifest file.
If you want to contribute to this example, or any other Miro Open Source project, please review Miro's contributing guide.