2015-08-06 14:46:44 -04:00
|
|
|
Path = require('path')
|
|
|
|
TMP_DIR = Path.resolve(Path.join(__dirname, "../../", "tmp"))
|
|
|
|
|
2014-02-26 11:17:15 -05:00
|
|
|
module.exports =
|
|
|
|
mongo:
|
|
|
|
url: 'mongodb://127.0.0.1/sharelatex'
|
|
|
|
internal:
|
|
|
|
trackchanges:
|
2014-03-03 08:31:10 -05:00
|
|
|
port: 3015
|
2014-02-26 11:17:15 -05:00
|
|
|
host: "localhost"
|
2014-03-04 10:27:03 -05:00
|
|
|
apis:
|
|
|
|
documentupdater:
|
|
|
|
url: "http://localhost:3003"
|
2014-06-06 08:00:28 -04:00
|
|
|
docstore:
|
|
|
|
url: "http://localhost:3016"
|
2014-03-06 13:04:00 -05:00
|
|
|
web:
|
|
|
|
url: "http://localhost:3000"
|
|
|
|
user: "sharelatex"
|
|
|
|
pass: "password"
|
2015-02-26 06:35:14 -05:00
|
|
|
redis:
|
|
|
|
web:
|
|
|
|
host: "localhost"
|
|
|
|
port: 6379
|
|
|
|
pass: ""
|
2015-08-06 09:00:09 -04:00
|
|
|
|
2015-08-06 16:09:36 -04:00
|
|
|
filestore:
|
|
|
|
backend: "s3"
|
|
|
|
stores:
|
|
|
|
user_files: ""
|
|
|
|
s3:
|
|
|
|
key: ""
|
|
|
|
secret: ""
|
2015-08-06 14:46:44 -04:00
|
|
|
|
|
|
|
path:
|
2015-08-06 16:09:36 -04:00
|
|
|
dumpFolder: Path.join(TMP_DIR, "dumpFolder")
|