mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add local conf file, for dev environment
This commit is contained in:
parent
f898f43b4e
commit
b6a44fdd33
2 changed files with 26 additions and 2 deletions
2
services/git-bridge/.gitignore
vendored
2
services/git-bridge/.gitignore
vendored
|
@ -1,8 +1,6 @@
|
||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
||||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
conf/local.json
|
|
||||||
|
|
||||||
# Let's not share anything because we're using Maven.
|
# Let's not share anything because we're using Maven.
|
||||||
|
|
||||||
.idea
|
.idea
|
||||||
|
|
26
services/git-bridge/conf/local.json
Normal file
26
services/git-bridge/conf/local.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"port": 8000,
|
||||||
|
"rootGitDirectory": "/tmp/wlgb",
|
||||||
|
"apiBaseUrl": "http://v2.overleaf.test:4000/api/git-bridge",
|
||||||
|
"username": "user",
|
||||||
|
"password": "pass",
|
||||||
|
"postbackBaseUrl": "http://git_bridge:8000",
|
||||||
|
"serviceName": "Overleaf",
|
||||||
|
"oauth2": {
|
||||||
|
"oauth2ClientID": "264c723c925c13590880751f861f13084934030c13b4452901e73bdfab226edc",
|
||||||
|
"oauth2ClientSecret": "e6b2e9eee7ae2bb653823250bb69594a91db0547fe3790a7135acb497108e62d",
|
||||||
|
"oauth2Server": "http://www.overleaf.test:5000"
|
||||||
|
},
|
||||||
|
"repoStore": {
|
||||||
|
"maxFileSize": 52428800
|
||||||
|
},
|
||||||
|
"swapStore": {
|
||||||
|
"type": "noop"
|
||||||
|
},
|
||||||
|
"swapJob": {
|
||||||
|
"minProjects": 50,
|
||||||
|
"lowGiB": 128,
|
||||||
|
"highGiB": 256,
|
||||||
|
"intervalMillis": 3600000
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue