Wasp-lang

W

Wasp-lang

Join the community to ask questions about Wasp-lang and get answers from other members.

Join

Is there google autentication integrated with mail autentication in wasp?

I would like to add google autentication to my website too, is there a way to do that?

Remove email sign in/ up

Is there a way to remove the email sign in/up. I'm only using Google Auth

Server is blocked by CORS policy

Hi there, I have the following problem: I have deployed my app to Railway (server, PostgreSQL and client). The app is "live" but if I want to sign up as a user it tells me: Network error and I get the following issue in the Browser console: signup:1 Access to XMLHttpRequest at 'https://server-production-...railway.app/auth/me' from origin 'https://client-production-....railway.app' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. index-Bpk1JXu_.js:57 ...
No description

Having problems with deploying to vercel and also manually deploying to my server hosting provider!

Hello guys today I tried to deploy my saas. I tried it on my hosted server but wasnt able to get i run. I really tried to understand the docs but still wasnt able.(would be nice if somebody could help me out) Next I tried vercel but there I also failed. Idk but i find it really hard to deploy a wasp project. So please guys help out and have a nice one!

Some crazy WASP error!

Hey guys! This is a different project from my main design one so its pretty new, so i can afford any breaking fixes lol. I don't know what the heck happened but i get this error:...

google login custom domain

I tried setting up google login with my custom domain deploying with fly.io and for some reason i tried logging in with google and it never logged in. I checked this out and it seemed to be because of the wasp client url that we have to set.. i had a "/" at the end and maybe that was it. But now when i try to get in to my wasp app that is deployed i cant login with any user or use the google login. Im not sure what happened, but i even deleted the client server from fly and re created it and the...

Issue with open saas and supabase

Hi, I'm using 0.13.2 version of Wasp and am trying to use the Open SAAS starter kit with Supabase to handle authentication and user data. I believe I was able to get the authentication working correctly earlier, however now when I try to sign up a user I get an error on the frontend "Request failed with status code 500" In the console, I get the following message:...

Why people use Shipfa.st when there is free tool like OpenSaaS?

Why people use Shipfa.st when there is free tool like OpenSaaS?

Does OpenSaaS provide email authentication webpage teamplate as html/jsx/css file?

Does OpenSaaS provide email authentication webpage as html/jsx/css file?

Does OpenSaaS provide email authentication service for different users?

Does OpenSaaS provide email authentication service for different users?

Add extension postgis

I want to add the PostGIS extension to my db. I added this into my main.wasp : ``` db: {...

ERP Project Help

Hello everyone, I started the Open SaaS project and starting the migrating the database schema using prisma, when I provide ChatGPT and GitHub Copilot our current MySQL. Then ChatGPT asked me to modify schema.prisma file. But I learned in the OpenSaaS document, we should not modify any files in the .wasp folder, but should modify main.wasp instead. How should I go about using GitHub Copilot and ChapGPT starting from this? little background:...

manual deploy gcp

I am trying to manuelly deploy to gcp cloud run and when doing the wasp build i get that the database url is not found but i did set it in .env.server Then when deploying cloud run it says that the app couldnt be deployed kn port 8080 (which i dont know where it gets from) but even when puttin port = 8080 in .env.server...

ERR_MODULE_NOT_FOUND due to double .js.js extension in name?

Have any of you had this error message before? Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/Users/howcaniexplain/Desktop/CodingProjects/Project/Project/app/.wasp/out/sdk/wasp/dist/ext-src/server/actions.js.js' imported from /Users/howcaniexplain/Desktop/CodingProjects/Project/Project/app/.wasp/out/sdk/wasp/dist/server/operations/actions/index.js I am recieving this error for queries and actions, where it seems to be looking for queries.js.js and actions.js.js instead of queries.js and actions.js. Actually going and manually changing both files to include the extra extension (ie making it queries.js.js and actions.js.js) actually fixed the error messge, but not really the ultimate issue as it is messy and Wasp created an additional copy of queries.js and actions.js now....

crud get

Can seem to figure out how to curl a /Tasks/get to my database. See the following setup: main.wasp ``` route RootRoute { path: "/", to: MainPage } page MainPage {...

Operations restarts everytime i alt-tab to the window

I've used opensaas template as starter point and altered it a lot, but operations are pretty much the same, they are actually just select some rows using prisma queries do you know how i can fix this issue or at least what i should read?...

Affordable server solution

Hi there, I've built my first project using the OpenSaaS template and would like to deploy it. I've read a bit about the cost of services such as Vercel and that they can explode if you're app gets a decent amount of traction. What would be an affordable solution that costs less than $50 per month for the initial phase of a project and can be scaled on a budget? 🙂...

How to change the order of fields in in signup page

Hello, I have added additional fields to signup form but all additional fields appear under the password and email fields, which I do not like and would like to change it: ``` <SignupForm additionalFields={[ {...

How can I implement server sent events

How can I implement server sent events in the actions.ts? I understand that all the backend functions are added to actions.ts, but I would like to add a server sent event function to actions.ts Thanks for the help!...

Prisma Studio for a deployed app

Hi how do I access the Prisma user management in a deployed app? I'd specifically like to see which files a user has uploaded