void
void
Explore posts from servers
CCConvex Community
Created by ian on 8/16/2023 in #show-and-tell
AI Town
this is so cool! sent it to my buddy who works at gathertown and he’s super impressed too!!
14 replies
CCConvex Community
Created by void on 8/15/2023 in #support-community
Exported query missing type annotations when building convex in another directory other than root
weirder thing is if i run tsc twice, it seems like nothing is wrong and i can execute my built node project fine πŸ‘€
4 replies
DIAdiscord.js - Imagine an app
Created by void on 8/5/2023 in #djs-questions
@discordjs/rest requests behave differently when deployed to a serverless node environment vs. local
if i don't await the first request to defer my interaction reply, the editReply and everything run and things appear fine but obviously i think i should be able to await that first request
8 replies
DIAdiscord.js - Imagine an app
Created by void on 8/5/2023 in #djs-questions
@discordjs/rest requests behave differently when deployed to a serverless node environment vs. local
hmm nothing is throwing πŸ‘€
8 replies
DIAdiscord.js - Imagine an app
Created by void on 8/5/2023 in #djs-questions
@discordjs/rest requests behave differently when deployed to a serverless node environment vs. local
cool thanks for the tips!
8 replies
DIAdiscord.js - Imagine an app
Created by void on 8/5/2023 in #djs-questions
@discordjs/rest requests behave differently when deployed to a serverless node environment vs. local
creating my api client:
const rest = new REST({ version: "10" }).setToken(
process.env.DISCORD_BOT_TOKEN!,
);
const api = new API(rest);
const rest = new REST({ version: "10" }).setToken(
process.env.DISCORD_BOT_TOKEN!,
);
const api = new API(rest);
8 replies
DIAdiscord.js - Imagine an app
Created by void on 8/5/2023 in #djs-questions
@discordjs/rest requests behave differently when deployed to a serverless node environment vs. local
running @discordjs/[email protected] and @discordjs/[email protected]
8 replies
DIAdiscord.js - Imagine an app
Created by void on 8/5/2023 in #djs-questions
@discordjs/rest requests behave differently when deployed to a serverless node environment vs. local
await api.interactions.defer(message.id, message.token, {
flags: 64,
});
const result = await command.run(message.id);
await api.interactions.editReply(
process.env.DISCORD_APP_ID!,
message.token,
{
content: result,
flags: 64,
},
);
await api.interactions.defer(message.id, message.token, {
flags: 64,
});
const result = await command.run(message.id);
await api.interactions.editReply(
process.env.DISCORD_APP_ID!,
message.token,
{
content: result,
flags: 64,
},
);
8 replies
CCConvex Community
Created by void on 7/15/2023 in #general
Docs for internalMutation out of date
cool thanks sorry if this was the wrong part to report!
5 replies
CCConvex Community
Created by void on 2/23/2023 in #general
πŸ‘‹ got my project working locally with
sweet thanks updated next and renamed back to convex/ , removed baseUrl and we're golden πŸ™‚
49 replies
CCConvex Community
Created by burnstony#1975 on 2/24/2023 in #general
πŸ‘»
9 replies
CCConvex Community
Created by burnstony#1975 on 2/24/2023 in #general
πŸ‘»
looks like you’re going to want to run npx convex dev in one terminal and npm run dev in another
9 replies