Upload files to "/"

This commit is contained in:
Григорий Сафронов 2025-07-01 19:43:59 +00:00
parent 44790fba55
commit 3f1a70c12a
4 changed files with 1034 additions and 0 deletions

1013
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[workspace]
resolver = "2" # Резолвер "3" для полного соответствия edition 2024
members = [
"futriix-server",
"futriix-cli",
]

13
futriix.config.toml Normal file
View File

@ -0,0 +1,13 @@
[server]
ip = "127.0.0.1"
port = 8080
log_path = "futriix.log"
[client]
ip = "127.0.0.1"
port = 8080
[replication]
enabled = false
peer_nodes = ["127.0.0.1:8081"]
sync_interval = 1000

2
futriix.log Normal file
View File

@ -0,0 +1,2 @@
11:29:49 [INFO] Futriix Server started successfully!
11:29:49 [INFO] Listening on: 127.0.0.1:8080