I’m new to Shopify App development. I was following this tutorial, and created my app using the command “npm init @Shopify_77 /app@latest”. I then chose to create an app using Remix. However, when it comes to running “npm run dev”, I always get this error when trying to connect my project to an app: “Couldn’t find shopify.app.toml in [directory]”. When I look, the file is in fact under the directory specified.
I have integrated the mongoDB
datasource db {
provider = “mongodb”
url = env(“DATABASE_URL”)
}
the npx prisma generate and npx prisma db push works perfect.
even I’m getting the model in mongodb atlas database.
but when i try to run the project with npm run dev it throwing the error
Error: The “mongodb” provider is not supported with this command. For more info see https://www.prisma.io/docs/concepts/database-connectors/mongodb
0: schema_core::state::ApplyMigrations
at schema-engine\core\src\state.rs:197
can you help me ? Thank you in advance