I've been able to get a proof of concept of downloading a openscad library when the docker image builds https://twitter.com/IrevDev/status/1400785325509660678 Since its experimental atm I'll leave it with just the one for now. I've also got a local dev working again for the cad lambdas. Resolves #338
42 lines
997 B
JavaScript
42 lines
997 B
JavaScript
const express = require('express')
|
|
var cors = require('cors')
|
|
const axios = require('axios')
|
|
const { restart } = require('nodemon')
|
|
const app = express()
|
|
const port = 8080
|
|
app.use(express.json())
|
|
app.use(cors())
|
|
|
|
const invocationURL = (port) =>
|
|
`http://localhost:${port}/2015-03-31/functions/function/invocations`
|
|
|
|
app.post('/openscad/preview', async (req, res) => {
|
|
try {
|
|
const { data } = await axios.post(invocationURL(5052), {
|
|
body: JSON.stringify(req.body),
|
|
})
|
|
res.status(data.statusCode)
|
|
res.send(data.body)
|
|
} catch (e) {
|
|
res.status(500)
|
|
res.send()
|
|
}
|
|
})
|
|
app.post('/cadquery/stl', async (req, res) => {
|
|
console.log('making post request to 5060')
|
|
try {
|
|
const { data } = await axios.post(invocationURL(5060), {
|
|
body: req.body
|
|
})
|
|
res.status(data.statusCode)
|
|
res.send(data.body)
|
|
} catch (e) {
|
|
res.status(500)
|
|
res.send()
|
|
}
|
|
})
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Example app listening at http://localhost:${port}`)
|
|
})
|