You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two meteor servers and I'm connecting. One for the desktop app with all the collections, and the other for the mobile app. I'm connecting the mobile app to the desktop app via ddp.connect(). How can I upload files to the store on the meteor server hosting the desktop app and database? If I try I get Store not found [invalid-store]. If I define the store on the server of the mobile app it tries to send a post request to http://localhost:3000/ufs/appimages/ which should be http://localhost:3030 where the database is located.
Here is my collection on the mobile server
imports/collections/app-images.ts
I have two meteor servers and I'm connecting. One for the desktop app with all the collections, and the other for the mobile app. I'm connecting the mobile app to the desktop app via
ddp.connect()
. How can I upload files to the store on the meteor server hosting the desktop app and database? If I try I getStore not found [invalid-store]
. If I define the store on the server of the mobile app it tries to send a post request tohttp://localhost:3000/ufs/appimages/
which should behttp://localhost:3030
where the database is located.The text was updated successfully, but these errors were encountered: