blob: cee5e0588e922f4af9e0397f287c4e90a3c701e4 (
plain) (
tree)
|
|
# Surfer
Surfer is a Simple static file server. It comes with a commandline tool
to upload files from your local folders.
## Installation
[![Install](https://cloudron.io/img/button32.png)](https://cloudron.io/button.html?app=io.cloudron.surfer)
or using the [Cloudron command line tooling](https://cloudron.io/references/cli.html)
```
cloudron install --appstore-id io.cloudron.surfer
```
## Building
The app package can be built using the [Cloudron command line tooling](https://cloudron.io/references/cli.html).
```
cd surfer
cloudron build
cloudron install
```
### How to upload
You can upload files using the commandline tool.
First, install the surfer cli tool using npm.
sudo npm -g install cloudron-surfer
Login using your Cloudron credentials:
surfer login <this app's url>
Put some files:
surfer put [file]
## Testing
The e2e tests are located in the `test/` folder and require [nodejs](http://nodejs.org/). They are creating a fresh build, install the app on your Cloudron, perform tests, backup, restore and test if the files are still ok.
```
cd surfer/test
npm install
USERNAME=<cloudron username> PASSWORD=<cloudron password> mocha --bail test.js
```
|