1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 12:10:48 +00:00
falk-werner_webfuse-provider/README.md

27 lines
604 B
Markdown
Raw Normal View History

2019-01-27 01:10:39 +00:00
# fuse-wsfs
2019-01-27 11:32:02 +00:00
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
2019-01-30 20:53:57 +00:00
cmake .. -DWITH_TESTS=ON
2019-01-27 11:32:02 +00:00
make
2019-01-30 20:53:57 +00:00
CTEST_OUTPUT_ON_FAILUE=1 make test
2019-01-27 11:32:02 +00:00
mkdir test
2019-01-31 20:45:08 +00:00
./wsfs -m test --document_root=`realpath ../src/app/www` --port=4711
2019-01-27 11:32:02 +00:00
# Dependencies
- [libfuse3](https://github.com/libfuse/libfuse/)
- [libwebsockets](https://libwebsockets.org/)
- [Jansson](https://jansson.readthedocs.io)
2019-01-30 20:53:57 +00:00
- [GoogleTest](https://github.com/google/googletest) *(optional)*
2019-01-27 11:32:02 +00:00