2 months ago
i have file users.json when new users starts playing he gets into users.json where i can find the file with all users
10 Replies
2 months ago
You would need to SSH into your service to view ephemeral files.
2 months ago
I would highly recommend using volumes for storing data.
2 months ago
Simply right click the canvas and create a volume and select the desired service to mount it to.
2 months ago
Access your file to the path you mounted the volume. (eg, /data)
2 months ago
If you wish to view the file contents, I’d suggest adding some kind of API that allows you to directly fetch data.
Otherwise, you can deploy a Filebrowser instance, unmount the volume from your service and mount it to Filebrowser, then access it from the Filebrowser URL.
2 months ago
Keep in mind your service will lose access to the json file while the volume is mounted to Filebrowser.