settings.development.coffee 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. Path = require('path')
  2. http = require('http')
  3. http.globalAgent.maxSockets = 300
  4. # Make time interval config easier.
  5. seconds = 1000
  6. minutes = 60 * seconds
  7. # These credentials are used for authenticating api requests
  8. # between services that may need to go over public channels
  9. httpAuthUser = "sharelatex"
  10. httpAuthPass = "password"
  11. httpAuthUsers = {}
  12. httpAuthUsers[httpAuthUser] = httpAuthPass
  13. sessionSecret = "secret-please-change"
  14. module.exports =
  15. # File storage
  16. # ------------
  17. #
  18. # ShareLaTeX stores binary files like images in S3.
  19. # Fill in your Amazon S3 credentials below.
  20. s3:
  21. key: ""
  22. secret: ""
  23. bucketName : ""
  24. # Databases
  25. # ---------
  26. mongo:
  27. url : 'mongodb://127.0.0.1/sharelatex'
  28. redis:
  29. web:
  30. host: "localhost"
  31. port: "6379"
  32. password: ""
  33. api:
  34. host: "localhost"
  35. port: "6379"
  36. password: ""
  37. # Service locations
  38. # -----------------
  39. # Configure which ports to run each service on. Generally you
  40. # can leave these as they are unless you have some other services
  41. # running which conflict, or want to run the web process on port 80.
  42. internal:
  43. web:
  44. port: webPort = 3000
  45. documentupdater:
  46. port: docUpdaterPort = 3003
  47. # Tell each service where to find the other services. If everything
  48. # is running locally then this is easy, but they exist as separate config
  49. # options incase you want to run some services on remote hosts.
  50. apis:
  51. web:
  52. url: "http://localhost:#{webPort}"
  53. user: httpAuthUser
  54. pass: httpAuthPass
  55. documentupdater:
  56. url : "http://localhost:#{docUpdaterPort}"
  57. thirdPartyDataStore:
  58. url : "http://localhost:3002"
  59. emptyProjectFlushDelayMiliseconds: 5 * seconds
  60. tags:
  61. url :"http://localhost:3012"
  62. spelling:
  63. url : "http://localhost:3005"
  64. versioning:
  65. snapshotwaitms:3000
  66. url: "http://localhost:4000"
  67. username: httpAuthUser
  68. password: httpAuthPass
  69. recurly:
  70. privateKey: ""
  71. apiKey: ""
  72. subdomain: ""
  73. chat:
  74. url: "http://localhost:3010"
  75. templates:
  76. port: 3007
  77. blog:
  78. port: 3008
  79. filestore:
  80. url: "http://localhost:3009"
  81. clsi:
  82. url: "http://localhost:3013"
  83. templates_api:
  84. url: "http://localhost:3014"
  85. # Where your instance of ShareLaTeX can be found publically. Used in emails
  86. # that are sent out, generated links, etc.
  87. siteUrl : 'http://localhost:3000'
  88. # Same, but with http auth credentials.
  89. httpAuthSiteUrl: 'http://#{httpAuthUser}:#{httpAuthPass}@localhost:3000'
  90. # Security
  91. # --------
  92. security:
  93. sessionSecret: sessionSecret
  94. httpAuthUsers: httpAuthUsers
  95. # Default features
  96. # ----------------
  97. #
  98. # You can select the features that are enabled by default for new
  99. # new users.
  100. plans: plans = [{
  101. planCode: "personal"
  102. name: "Personal"
  103. price: 0
  104. features:
  105. collaborators: -1
  106. dropbox: true
  107. versioning: true
  108. }]
  109. # Spelling languages
  110. # ------------------
  111. #
  112. # You must have the corresponding aspell package installed to
  113. # be able to use a language.
  114. languages: [
  115. {name: "English", code: "en"}
  116. ]
  117. # Third party services
  118. # --------------------
  119. #
  120. # ShareLaTeX's regular newsletter is managed by Markdown mail. Add your
  121. # credentials here to integrate with this.
  122. # markdownmail:
  123. # secret: ""
  124. # list_id: ""
  125. #
  126. # Fill in your unique token from various analytics services to enable
  127. # them.
  128. # analytics:
  129. # mixpanel:
  130. # token: ""
  131. # ga:
  132. # token: ""
  133. # heap:
  134. # token: ""
  135. #
  136. # ShareLaTeX's help desk is provided by tenderapp.com
  137. # tenderUrl: ""
  138. #
  139. # ShareLaTeX uses Amazon's SES api to send transactional emails.
  140. # Uncomment these lines and provide your credentials to be able to send emails.
  141. # ses:
  142. # "key":""
  143. # "secret":""
  144. # Production Settings
  145. # -------------------
  146. # Should javascript assets be served minified or not. Note that you will
  147. # need to run `grunt compile:minify` within the web-sharelatex directory
  148. # to generate these.
  149. useMinifiedJs: false
  150. # Should static assets be sent with a header to tell the browser to cache
  151. # them.
  152. cacheStaticAssets: false
  153. # If you are running ShareLaTeX over https, set this to true to send the
  154. # cookie with a secure flag (recommended).
  155. secureCookie: false
  156. # Internal configs
  157. # ----------------
  158. path:
  159. # If we ever need to write something to disk (e.g. incoming requests
  160. # that need processing but may be too big for memory, then write
  161. # them to disk here).
  162. dumpFolder: Path.resolve "data/dumpFolder"
  163. # Automatic Snapshots
  164. # -------------------
  165. automaticSnapshots:
  166. # How long should we wait after the user last edited to
  167. # take a snapshot?
  168. waitTimeAfterLastEdit: 5 * minutes
  169. # Even if edits are still taking place, this is maximum
  170. # time to wait before taking another snapshot.
  171. maxTimeBetweenSnapshots: 30 * minutes
  172. # Smoke test
  173. # ----------
  174. # Provide log in credentials and a project to be able to run
  175. # some basic smoke tests to check the core functionality.
  176. #
  177. # smokeTest:
  178. # user: ""
  179. # password: ""
  180. # projectId: ""