Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thatbackendguy/remote-file-system-v2

Multithreaded Remote File System server architecture using Core Java, and interactive client side console
https://github.com/thatbackendguy/remote-file-system-v2

Last synced: 12 days ago
JSON representation

Multithreaded Remote File System server architecture using Core Java, and interactive client side console

Awesome Lists containing this project

README

        

# Remote File System
created by: https://github.com/thatbackendguy/

## Flow Diagram
![Remote File System: Flow Diagram](https://raw.githubusercontent.com/thatbackendguy/remote-file-system-v2/main/Client-side%20Flow%20Diagram.png)

## Steps to run
1. Run server
```bash
java BootStrap server
```
2. Run client
```bash
java BootStrap client
```
> Note: If running the server and client on different machines, add the `config.json` file where the program is being executed.
> ```json
> {
> "HOST": "",
> "PORT": ""
> }
> ```