Rename project to unc-file-watcher
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
.gocache/
|
.gocache/
|
||||||
.gotmp/
|
.gotmp/
|
||||||
|
unc-file-watcher.exe
|
||||||
|
unc-file-watcher-settings.json
|
||||||
unc_tar_watcher.exe
|
unc_tar_watcher.exe
|
||||||
unc_tar_watcher.exe~
|
unc_tar_watcher.exe~
|
||||||
unc_tar_watcher_settings.json
|
unc_tar_watcher_settings.json
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ stable_scans: 3
|
|||||||
## Build
|
## Build
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
go build -o unc_tar_watcher.exe .
|
go build -o unc-file-watcher.exe .
|
||||||
```
|
```
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
.\unc_tar_watcher.exe
|
.\unc-file-watcher.exe
|
||||||
```
|
```
|
||||||
|
|
||||||
Default listen address:
|
Default listen address:
|
||||||
@@ -70,7 +70,7 @@ http://127.0.0.1:18080
|
|||||||
To change the port:
|
To change the port:
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
.\unc_tar_watcher.exe -listen 127.0.0.1:19090
|
.\unc-file-watcher.exe -listen 127.0.0.1:19090
|
||||||
```
|
```
|
||||||
|
|
||||||
## Web UI Settings
|
## Web UI Settings
|
||||||
@@ -103,7 +103,7 @@ To change the port:
|
|||||||
The web UI saves settings automatically next to the executable:
|
The web UI saves settings automatically next to the executable:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
unc_tar_watcher_settings.json
|
unc-file-watcher-settings.json
|
||||||
```
|
```
|
||||||
|
|
||||||
When you open the page again, the last saved settings are loaded automatically.
|
When you open the page again, the last saved settings are loaded automatically.
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
module file_listening_tools
|
module unc-file-watcher
|
||||||
|
|
||||||
go 1.26
|
go 1.26
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ const (
|
|||||||
defaultInterval = 15 * time.Second
|
defaultInterval = 15 * time.Second
|
||||||
defaultStableFor = 30 * time.Second
|
defaultStableFor = 30 * time.Second
|
||||||
maxLogLines = 200
|
maxLogLines = 200
|
||||||
settingsFileName = "unc_tar_watcher_settings.json"
|
settingsFileName = "unc-file-watcher-settings.json"
|
||||||
genericDedupeNameSize = "name_size"
|
genericDedupeNameSize = "name_size"
|
||||||
genericDedupeNameHash = "name_hash"
|
genericDedupeNameHash = "name_hash"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user