Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thatbackendguy/remote-file-system-v2
- Owner: thatbackendguy
- Created: 2024-03-14T05:16:11.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T11:16:56.000Z (3 months ago)
- Last Synced: 2024-08-09T12:38:42.543Z (3 months ago)
- Language: Java
- Homepage:
- Size: 1.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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": ""
> }
> ```