-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vercel storage supabase #935
Comments
The message indicates that the /seed route in your Next.js project is a placeholder or template file meant to guide you in setting up your database seeding logic. Here’s what it means and how you can resolve it: Explanation Message: Steps to Resolve Uncomment and Customize the File: Look for commented-out code that performs the seeding logic. It might look something like this: javascript
Set Up Your Seeding Logic: Replace the placeholder data (column1, column2, etc.) with your actual table names and columns. Access http://localhost:3000/seed in your browser or use a tool like Postman. Example Seeding Logic for Supabase javascript
Make sure you replace users, username, and email with the actual names from your Supabase schema. Let me know if you encounter issues! |
all it took me was to erase the return statement... that coment was all that was inside. Not sure if what i did was correct... but it seems to have worked.
|
Thanks, we will make this more clear 🙏 |
im learning nextjs statter pack nextjs admin dashboard im using storage supabase when im accessing http://localhost:3000/seed
the message is displaying
{
"message": "Uncomment this file and remove this line. You can delete this file when you are finished."
}
The text was updated successfully, but these errors were encountered: