diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-04-10 22:13:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 22:13:42 +0800 |
commit | 9a5b227f3ee2b2a3854d3aec022cc9a0cf0868b3 (patch) | |
tree | 7600826f4affce28e95588de921d801f0414f046 /conf/app.ini | |
parent | 3e055e329cf93eb5de77562d7795240808d31c08 (diff) |
lfsutil: add `Storager` interface and local storage (#6083)
* Add Storager interface
* Add tests
* Add back note
* Add tests for basic protocol routes
* Fix lint errors
Diffstat (limited to 'conf/app.ini')
-rw-r--r-- | conf/app.ini | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/app.ini b/conf/app.ini index 9d26ca2f..613e2313 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -264,7 +264,9 @@ HOST = ACCESS_CONTROL_ALLOW_ORIGIN = [lfs] -; The root path to store LFS objects. +; The storage backend for uploading new objects. +STORAGE = local +; The root path to store LFS objects on local file system. OBJECTS_PATH = data/lfs-objects [attachment] |