mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
- This PR upgrades `biome` from `2.0.5` -> `2.1.2` and adds two new rules - [noUnusedImports](https://biomejs.dev/linter/rules/no-unused-private-class-members) ( we already had suppressions for this rule in code, but the rule itself was never enabled in the config ) - [noUnusedPrivateClassMembers](https://biomejs.dev/linter/rules/no-unused-private-class-members/) - remove stale suppressions. - remove stale code. --------- Co-authored-by: Mikael Finstad <finstaden@gmail.com> |
||
|---|---|---|
| .. | ||
| client | ||
| server | ||
| index.html | ||
| package.json | ||
| README.md | ||
Uppy + Companion + Custom Provider Example
This example uses @uppy/companion with a dummy custom provider. This serves as an illustration on how integrating custom providers would work
Run it
Note: this example is using fetch, which is only available on Node.js 18+.
First, you want to set up your environment variable. You can copy the content of
.env.example and save it in a file named .env. You can modify in there all
the information needed for the app to work that should not be committed (Google
keys, Unsplash keys, etc.).
[ -f .env ] || cp .env.example .env
To run the example, from the root directory of this repo, run the following commands:
corepack yarn install
corepack yarn build
corepack yarn workspace @uppy-example/custom-provider start