2014-04-02 16:59:44 -04:00
|
|
|
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")
|
2014-04-08 10:18:56 -04:00
|
|
|
synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id)
|
2014-04-02 16:59:44 -04:00
|
|
|
|
|
|
|
internal:
|
|
|
|
clsi:
|
|
|
|
port: 3013
|
|
|
|
host: "localhost"
|
|
|
|
|
|
|
|
apis:
|
|
|
|
clsi:
|
|
|
|
url: "http://localhost:3013"
|
|
|
|
|
|
|
|
|