Make the public dir live inside data to make volume mounting easier

This commit is contained in:
Gabe Kangas
2023-01-17 17:03:28 -08:00
parent e984f14089
commit 44fe52fc5a
3 changed files with 19 additions and 17 deletions

View File

@@ -27,4 +27,7 @@ var (
// CustomEmojiPath is the emoji directory.
CustomEmojiPath = filepath.Join(DataDirectory, "emoji")
// PublicFilesPath is the optional directory for hosting public files.
PublicFilesPath = filepath.Join(DataDirectory, "public")
)