Hey everyone, I’m wondering if you’ve had any luck uploading files to the storage emulator using the admin sdk? I’ve defined FIRESTORE_STORAGE_EMULATOR_HOST and am uploading like so
bucket.upload('./db-seed/files.json', {
destination:
'users-0/lhlA9hDvVmL2N8g6780CgwvERkXp/projects/project-id-1/files.json'
})```
but this keeps adding the file to the real storage.
I’m initialising the app like so, and can successfully upload data to the firestore emulator, but not the storage emulator
```admin.initializeApp({
projectId: ...,
credential: admin.credential.cert({
projectId: ...,
private_key: ...,
client_email: ...
}),
storageBucket: ...
});```