Wasmer Explorer
This is the Wasmer File explorer based on Files.Gallery and purchased with an "Unlimited License" for Wasmer usage.
Running the server
You can run the server easily with wasmer run .
.
However, you'll need to map any host directory to the guest /public
in order to have things working.
Use with Public access
This method doesn't require any login at all.
wasmer run . --env ALLOW_PUBLIC_ACCESS=1 --mapdir=/public:..
Use with Wasmer Hosting
By default, if no ALLOW_PUBLIC_ACCESS
is defined, it will retrieve the credentials from an one-time-token
from Wasmer to allow having a secure magic login to access the app.
wasmer run . --net --env WASMER_GRAPHQL_URL=https://registry.wasmer.wtf/graphql --env WASMER_APP_ID=THEAPP_ID --mapdir=/public:..
This will allow loging in with a scheme such as:
http://localhost:8080/?magiclogin=[THE_TOKEN]&volumeid=[THE_VOLUME_ID]