mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
28 lines
646 B
Markdown
28 lines
646 B
Markdown
# 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
|
|
|
|
- [libuv](https://github.com/libuv/libuv)
|
|
- [libfuse3](https://github.com/libfuse/libfuse/)
|
|
- [libwebsockets](https://libwebsockets.org/)
|
|
- [Jansson](https://jansson.readthedocs.io)
|
|
- [GoogleTest](https://github.com/google/googletest) *(optional)*
|
|
|
|
|