You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Falk Werner 69ac81f6fb
execute unit tests after build
5 years ago
.github/ISSUE_TEMPLATE Update issue templates 5 years ago
inc added shared library 5 years ago
src added timeout handling 5 years ago
test-src added timeout handling 5 years ago
.gitignore switched tests to google test 5 years ago
.travis.yml execute unit tests after build 5 years ago
AUTHORS added license and authors files 5 years ago
CMakeLists.txt fix: force c++11 for unit tests 5 years ago
COPYING.LESSER added license and authors files 5 years ago
README.md use libwebsockets as loop for fuse fd; removed dependency to libuv, since it is not needed anymore; disabled jsonrpc temporary, until refactoring is finished (will not work properly) 5 years ago

README.md

fuse-wsfs

fuse-wsfs combines libwebsockets and libfuse. It allows ot attach a remote filesystem via websockets.

Status: Proof of concept

Build and run

cd fuse-wsfs
mkdir ./build
cd ./build
cmake .. -DWITH_TESTS=ON
make
CTEST_OUTPUT_ON_FAILUE=1 make test
mkdir test
./wsfs -m test --document_root=`realpath ../src/app/www` --port=4711

Dependencies