Eric
Eric
Explore posts from servers
DDokploy
Created by Attacler/Bart on 2/20/2025 in #old-help
how to use http 3
No description
36 replies
DDokploy
Created by renderlux on 3/13/2025 in #old-help
I can not deploy a simple app
well, there is basically nothing here to help you—do you have code/code snippets? errors? From this you posted here I can see that you use yatn to install the dependencies, but there is no build step listed. You might need to specify that you want to use yarn there as well Other than that, I’m afraid you need to provide more context
3 replies
DDokploy
Created by dx on 9/20/2024 in #old-help
During build time an application could not reach a database or api from another container.
Actually, I don’t think I can even expose Postgres??
60 replies
DDokploy
Created by dx on 9/20/2024 in #old-help
During build time an application could not reach a database or api from another container.
There probably isn’t a solution for this yet, right? I’d need to expose the database, and I’m not really comfortable with that
60 replies
DDeno
Created by Eric on 2/13/2025 in #help
VSCode only TypeScript Errors, nothing from Deno LSP
I’ve added that after initializing didn’t work
4 replies
SSolidJS
Created by Eric on 1/21/2025 in #support
[astro-island] Error hydrating /src/components/SignUp/SignUpForm.tsx TypeError: conds[i] is undefine
Alright, rubberducking to the rescue again … I’ve but <Show />s in my <Switch /> instead of <Match />es
2 replies
DDokploy
Created by Eric on 1/16/2025 in #old-help
S3 Connection not working with Minio
Turns out the issue was DNS lol I’ve proxied the domain entry through cloudflare, that didnt work
2 replies
DDokploy
Created by Eric on 1/9/2025 in #old-help
Application not available despite successful deployment
Alright, it was a misconfigured volume path … Got no error on it though, hat to dig into the server logs to find this
3 replies
DDokploy
Created by Eric on 1/3/2025 in #old-help
502 Bad Gateway without further logs
https://discord.com/channels/1234073262418563112/1234075018850205856/1305573515206066186 Nevermind … I thought setting the host in the env was enough, but it seems like it isn’t
2 replies
DDokploy
Created by MBM on 11/11/2024 in #old-help
Stuck deployments
Maybe there should be a 60 min max for builds, after which they get cancled?
9 replies
DDokploy
Created by MBM on 11/11/2024 in #old-help
Stuck deployments
I’ve got similar issues — also nixpacks
9 replies
SSolidJS
Created by Eric on 12/1/2024 in #support
Solid Start Navigation
Ahh that makes sense! would it also work to call parseDate in the createAsync directly? Like this
const servings = createAsync(
async () => getServings(params.mensa, parseDate(date), 'de'),
{ deferStream: true },
)
const servings = createAsync(
async () => getServings(params.mensa, parseDate(date), 'de'),
{ deferStream: true },
)
6 replies
SSolidJS
Created by Eric on 12/1/2024 in #support
Solid Start Navigation
Turns out it was the exact same problem: this is what I changed in case someone is having a similar problem:
const [servings] = createResource(() => {
return {
mensaSlug: params.mensa,
date: parseDate(params.date),
language: 'de' as const,
}
}, getServings, {
deferStream: true,
})
const [servings] = createResource(() => {
return {
mensaSlug: params.mensa,
date: parseDate(params.date),
language: 'de' as const,
}
}, getServings, {
deferStream: true,
})
6 replies
SSolidJS
Created by Eric on 12/1/2024 in #support
Solid Start Navigation
This seems to be related to this: https://discordapp.com/channels/722131463138705510/1223010243433332776 I'm currently trying to follow what has been discussed there
6 replies
SSolidJS
Created by Eric on 11/21/2023 in #support
Generating Client Only code for static deployment
that’s really exactly what I needed, thanks so much!
16 replies
SSolidJS
Created by Eric on 11/21/2023 in #support
Generating Client Only code for static deployment
omg! I think I just assumed that in the public folder is the same as in my normal public folder
16 replies
SSolidJS
Created by Eric on 11/21/2023 in #support
Generating Client Only code for static deployment
And I also don’t want fully static, as it basically is a client only app, but with some routing features, such as searchparams as I said
16 replies
SSolidJS
Created by Eric on 11/21/2023 in #support
Generating Client Only code for static deployment
Well the thing is, I need stuff like useSearchParams, which afaik is not in solidjs w/o start?
16 replies
SSolidJS
Created by Eric on 9/20/2023 in #support
Async TRPC query with ssr
Okay figured it out… This is probably never going to happen, but if someone else ever has this issue: I had some diy checks if the user is signed in, as protectedProcedures somehow didnt work
if (!ctx.session || !ctx.session.user) {
console.log("No session found")
return null
}
if (!ctx.session || !ctx.session.user) {
console.log("No session found")
return null
}
Because of this, the route returned null at first and didnt refetch, as there was a "successful" return already
2 replies
SSolidJS
Created by Eric on 9/17/2023 in #support
Solid Start not deploying on vercel in turborepo
No description
3 replies