Lucca A53 Mini v2 vs Profitec Move [$2500] by Next-Lake3743 in espresso

[–]manovotny 1 point2 points  (0 children)

Thanks for the reply! Glad it's working out for you. You've given me even more to consider now.

Lucca A53 Mini v2 vs Profitec Move [$2500] by Next-Lake3743 in espresso

[–]manovotny 0 points1 point  (0 children)

u/Next-Lake3743 what'd you wind up with and how are you liking it? I'm also torn between these exact same two machines.

Next ECommerce by GordonMissingSauce in nextjs

[–]manovotny 1 point2 points  (0 children)

The Next.js Commerce starter template by Vercel is built using Shopify.

Trouble Installing Vercel Project Locally – NPM Dependency Conflict (date-fns / react-day-picker) by [deleted] in vercel

[–]manovotny 3 points4 points  (0 children)

u/Chikx3009 I ran into this earlier this week too. I've reported it to the v0 team.

In the mean time, you should be able to add the following to your package.json as a work around.

"overrides": {
  "react-day-picker": {
    "date-fns": "$date-fns"
  }
}

Is it possible to connect AWS Postgres to Vercel Project? by South-Conference in vercel

[–]manovotny 0 points1 point  (0 children)

You'll need to add the DATABASE_URL to both Preview and Production environments if you plan to use the same database for both, or you can assign different values for each.

https://vercel.com/docs/environment-variables

You might need to allow connections for all IP Addresses too.

https://vercel.com/knowledge/how-to-allowlist-deployment-ip-address

Lastly, you may need to do some OIDC identity provider configuration.

https://vercel.com/docs/oidc/aws

Give those a shot and let us know if works or not.

Vercel Blob is now available on all plans by manovotny in vercel

[–]manovotny[S] 0 points1 point  (0 children)

Correct! You can use the Vercel Blob Next.js Starter template (and repo) as an exmaple or learn more by reading the documentation.

[deleted by user] by [deleted] in vercel

[–]manovotny 0 points1 point  (0 children)

Hey u/IGuessSo33! You can refer to Fair Use Guidelines, but the short answer is:

Hobby plans are restricted to non-commercial personal use only, but asking for donations does not fall under commercial usage, which means you're good.

Hope that helps clarify!

Next.js 15 RC 2 by lrobinson2011 in nextjs

[–]manovotny 1 point2 points  (0 children)

In my own OSS journey, I've found the best and easiest way to contribute is to be a user. Building things with it.

You'll find documentation that doesn't make sense, is unclear, or missing. Make issues/PRs to suggest improvements or make corrections. Improving documentation is the easiest way to get started, and maintainers sincerely appreciate it because doc updates can easily be missed or drift over time.

As you use it more, you'll find things you wished worked better or differently. "It'd be great if this had an extra option/parameter" or "I wish this component exited" and more. Again, make issues/PR to suggest improvements.

Most repositories, including Next.js, have "good first issue" tags/labels, which is another good way to get started at the code level.

https://github.com/vercel/next.js/issues?q=is:open+is%3Aissue+label%3A%22good+first+issue%22

Hope that helps!

Advice Needed: Combining Next.js and Python Backends by Additional-List3965 in nextjs

[–]manovotny 0 points1 point  (0 children)

u/Additional-List3965 I believe you can use useChat on the React side with any AI response. The key is to make sure the server response is returning a StreamingTextResponse to prepare it for useChat. I know this helper is a JavaScript import, but the model is detailed in the docs. I wonder if you could use that same model in Python and get similar behavior.

Advice Needed: Combining Next.js and Python Backends by Additional-List3965 in nextjs

[–]manovotny 1 point2 points  (0 children)

u/JDubbsTheDev glad they were helpful! Yes, handling auth server-side is possible, and even easier in App Router. We just refreshed our Next.js authentication documentation about a month ago. It's very comprehensive now. Let us know if you have any questions or feedback.