mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
18 lines
383 B
CoffeeScript
18 lines
383 B
CoffeeScript
express = require("express")
|
|
app = express()
|
|
|
|
module.exports = MockProjectHistoryApi =
|
|
docs: {}
|
|
|
|
run: () ->
|
|
app.post "/project", (req, res, next) =>
|
|
res.json project: id: 1
|
|
|
|
app.listen 3054, (error) ->
|
|
throw error if error?
|
|
.on "error", (error) ->
|
|
console.error "error starting MockProjectHistoryApi:", error.message
|
|
process.exit(1)
|
|
|
|
|
|
MockProjectHistoryApi.run()
|