├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── cmd └── filesentry │ └── main.go ├── configs └── rules.yaml ├── demo.cast ├── docker-compose.yml ├── files ├── media │ └── movies │ │ ├── movie (1080p).mp4 │ │ ├── movivve .mp4 │ │ └── video2.mp4 └── sorted │ ├── docs │ └── cv.pdf │ └── images │ └── test.jpg ├── go.mod ├── go.sum └── internal ├── actions └── actions.go ├── config └── config.go └── watcher └── watcher.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/README.md -------------------------------------------------------------------------------- /cmd/filesentry/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/cmd/filesentry/main.go -------------------------------------------------------------------------------- /configs/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/configs/rules.yaml -------------------------------------------------------------------------------- /demo.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/demo.cast -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /files/media/movies/movie (1080p).mp4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/media/movies/movivve .mp4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/media/movies/video2.mp4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/sorted/docs/cv.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/sorted/images/test.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/go.sum -------------------------------------------------------------------------------- /internal/actions/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/internal/actions/actions.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/watcher/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettjesse/FileSentry/HEAD/internal/watcher/watcher.go --------------------------------------------------------------------------------