-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making images, items, metadata configurable
- Loading branch information
1 parent
265c79a
commit 90ac7fb
Showing
6 changed files
with
75 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
package dirs | ||
|
||
import "github.com/arelate/vangogh_local_data" | ||
|
||
var AbsLogsDir = "" | ||
|
||
func SetStateDir(d string) { | ||
vangogh_local_data.ChRoot(d) | ||
} | ||
|
||
func SetTempDir(d string) { | ||
vangogh_local_data.SetTempDir(d) | ||
} | ||
|
||
func SetLogsDir(d string) { | ||
AbsLogsDir = d | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
config | ||
# configuration: settings.txt | ||
/etc/vangogh | ||
# configuration: settings.txt | ||
/etc/vangogh | ||
logs | ||
# logs | ||
/var/log/vangogh | ||
state | ||
# directories: checksums, downloads, images, metadata, recycle_bin, videos | ||
# files: skiplist.txt | ||
/var/lib/vangogh | ||
# logs | ||
/var/log/vangogh | ||
root | ||
# directories: checksums, downloads, recycle_bin, videos | ||
# files: skiplist.txt | ||
/var/lib/vangogh | ||
images | ||
/var/lib/vangogh/images | ||
items | ||
/var/lib/vangogh/items | ||
metadata | ||
/var/lib/vangogh/metadata | ||
temp | ||
# temporary data: cookies.txt | ||
/var/tmp | ||
# temporary data: cookies.txt | ||
/var/tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
module github.com/arelate/vangogh | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/arelate/southern_light v0.1.28 | ||
github.com/arelate/vangogh_local_data v0.2.94 | ||
github.com/arelate/vangogh_local_data v0.2.95 | ||
github.com/boggydigital/atomus v0.1.9 | ||
github.com/boggydigital/clo v0.3.6 | ||
github.com/boggydigital/coost v0.3.8 | ||
github.com/boggydigital/dolo v0.2.11 | ||
github.com/boggydigital/dolo v0.2.12 | ||
github.com/boggydigital/issa v0.1.10 | ||
github.com/boggydigital/kvas v0.3.28 | ||
github.com/boggydigital/kvas_dolo v0.1.6 | ||
github.com/boggydigital/middleware v0.1.10 | ||
github.com/boggydigital/nod v0.1.21 | ||
github.com/boggydigital/packer v0.1.0 | ||
github.com/boggydigital/wits v0.2.3 | ||
github.com/boggydigital/yt_urls v0.1.24 | ||
golang.org/x/exp v0.0.0-20230807204917-050eac23e9de | ||
github.com/boggydigital/yt_urls v0.1.25 | ||
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb | ||
) | ||
|
||
require ( | ||
github.com/boggydigital/match_node v0.1.14 // indirect | ||
golang.org/x/image v0.11.0 // indirect | ||
golang.org/x/net v0.12.0 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters