Asguho
Asguho
DDeno
Created by Asguho on 3/12/2025 in #help
Running vite and a deno server in workspaces
I want to write "deno task dev" and it will then start both the frontend (written with vite) and the deno backend at the same time. the closest i got was this:
{
"workspace": [
"./server",
"./client"
],
"nodeModulesDir": "auto"
}
{
"workspace": [
"./server",
"./client"
],
"nodeModulesDir": "auto"
}
deno task --recursive dev
deno task --recursive dev
but it just starts the vite server and occupies the terminal, so i have to pres crtl+c inorder for the backend server to start
3 replies
DDeno
Created by Asguho on 3/10/2025 in #help
Questions about Subhosting
The last message in the #subhosting channel was that any questions should be sent to support@deno.com. So, I sent the following message last week, but haven't got a response: Hey, I feel like I’ve missed something in the docs, but is there a way to subscribe to a hook when a deployment goes live? When I call the API and get back an ID, then call the URL, I get a "not found" error for a few seconds. Is there a webhook or socket I can subscribe to in order to know when it becomes available? We use subhosting for hosting tons of webhooks from our users, which we then call from our own backend. Is there a way to configure a firewall to only allow requests from our backend and block external requests? Thanks, Aske
1 replies