Gyurmatag
Gyurmatag
Explore posts from servers
CDCloudflare Developers
Created by Gyurmatag on 4/12/2024 in #general-help
Help wanted on AWS, Azure vs Cloudflare
Hi! My company’s devops team don’t want to use Cloudflare for serverless edge functions and D1 database for fast paced start up like, low cloud cost MVP applications. They want to go with AWS Lamdba, Aurora or Azure. Please help me to convince them with data and reasoning! Thank you very much!
2 replies
CDCloudflare Developers
Created by Gyurmatag on 4/11/2024 in #general-help
Can't see "Security" Tab on Dashboard
Hi! Even though the "WAF" features must be available in Free plans I can't see a "Security" on my dashboard. https://developers.cloudflare.com/waf/ I only see "Security Center". What do I need to enable to access this: Security > WAF
3 replies
DTDrizzle Team
Created by Gyurmatag on 6/18/2023 in #help
.get() returning only one element
Hey I am using DrizzleORM with Turso and I am having a problem thath this query return only one element, not a list of objects. How? export async function GET(req) { const page = req.query?.page ? parseInt(req.query.page) : 1; const limit = req.query?.limit ? parseInt(req.query.limit) : 10; const offset = (page - 1) * limit; const fetchedPosts = await db.select().from(posts).limit(limit).offset(offset).get(); console.log(fetchedPosts) return NextResponse.json(fetchedPosts) } Can somebody please help me? Thank you very much!
19 replies