mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
20 lines
426 B
CoffeeScript
20 lines
426 B
CoffeeScript
express = require("express")
|
|
app = express()
|
|
|
|
module.exports = MockFileStoreApi =
|
|
files: {}
|
|
|
|
run: () ->
|
|
app.post "/project/:project_id/file/:file_id", (req, res, next) =>
|
|
req.on 'data', ->
|
|
|
|
req.on 'end', ->
|
|
res.send 200
|
|
|
|
app.listen 3009, (error) ->
|
|
throw error if error?
|
|
.on "error", (error) ->
|
|
console.error "error starting MockFileStoreApi:", error.message
|
|
process.exit(1)
|
|
|
|
MockFileStoreApi.run()
|