mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
29 lines
520 B
CoffeeScript
29 lines
520 B
CoffeeScript
|
Path = require "path"
|
||
|
|
||
|
module.exports =
|
||
|
# Options are passed to Sequelize.
|
||
|
# See http://sequelizejs.com/documentation#usage-options for details
|
||
|
mysql:
|
||
|
clsi:
|
||
|
database: "clsi"
|
||
|
username: "clsi"
|
||
|
password: null
|
||
|
dialect: "sqlite"
|
||
|
storage: Path.resolve(__dirname + "/../db.sqlite")
|
||
|
|
||
|
|
||
|
path:
|
||
|
compilesDir: Path.resolve(__dirname + "/../compiles")
|
||
|
clsiCacheDir: Path.resolve(__dirname + "/../cache")
|
||
|
|
||
|
internal:
|
||
|
clsi:
|
||
|
port: 3013
|
||
|
host: "localhost"
|
||
|
|
||
|
apis:
|
||
|
clsi:
|
||
|
url: "http://localhost:3013"
|
||
|
|
||
|
|