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: 2 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-09T11:16:56.000Z (11 months ago)
- Last Synced: 2025-02-16T19:20:13.605Z (5 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
## 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": ""
> }
> ```