Simple file server cli
npm install cloudron-surferSurfer is a Simple static file server.
It comes with a commandline tool to upload files from your local folders and a webinterface to manage files directly on the server.

or using the Cloudron command line tooling
``bash`
cloudron install --appstore-id io.cloudron.surfer
The app package can be built using the Cloudron command line tooling.
`bash`
git clone https://git.cloudron.io/cloudron/surfer.git
cd surfer
cloudron build
cloudron install
The admin interface is available under the /_admin location or you can upload files using the commandline tool.
First, install the surfer cli tool using npm.
`bash`
npm -g install cloudron-surfer
Configure cli using your app domain and an API token created via the surfer admin user interface:
`bash`
surfer config --server
Put some files:
`bash`
surfer put [file]
`bash`
git clone https://git.cloudron.io/cloudron/surfer.git
cd surfer
npm install
During UI development, the assets have to be built after changes. This can be done with
`bash`
npm run build
While having the ./server.js` instance running.