Wasp-lang

W

Wasp-lang

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

Join

Safe to do major prisma update?

My console informed me that there is a major Prima update available. Is it safe to update? ``` [ Db !] ┌─────────────────────────────────────────────────────────┐ [ Db !] │ Update available 4.16.2 -> 5.14.0 │...

Getting 404 when trying to use ai-generative mode

I am trying to create a project with ChatGPT with my own ChatGPT4 API key but I am getting a 404 whenever I try generating an AI project with WASP. Is there anything special that needs to be done with ChatGPT to make this work? Is there any wasp command to confirm that the API key works okay? `Generated project skeleton....

LinkedIn Auth

Will there be LinkedIn Authentication added to Wasp / OpenSaas anytime in the future? If so, is there an approx. timeline on it?

custon tsconfig.json

wasp version: 0.13.2 Hi! I want to change tsconfig.json, but it says I can’t for now. I want to know if there is any manual way to change it. Thank you!...
No description

app crashed

Version: 0.13.2, Platform: Ubuntu 22.04.4 LTS Error report: [nodemon] app crashed - waiting for file changes before starting... Modify: open from true to false in the config file vite.config.ts Log:...

Wasp Compiler

A detailed explanation of what the wasp compiler does.

How do you get the user's email address when using Google login?

After upgrading to Wasp 0.13 it seems I can't get the User's email address anymore? The getEmail function returns null, as I'm using Google login ot authenticate the user. How can I get the user's email address when using social login?...

Get unique userID via wasp or auth0?

Hello i am wondering if there is a way to get a unique ID of some sort for every user. I managed to print out the user reg ID, which starts from 1 (the first member) etc. But im thinkin more of a "random code" simular to the "sub id" which you can get from regular auth0 app.

Anyone use railway for deployment

I want to deploy in railway and I don't know how to start. because the db and the frontend and backend all in wasp, it make me confus.

Wasp and Vite

How much does Wasp utilize Vite?

API Authentication

Is there a good example of how to add an api endpoint for authentication? I'm primarily using username and password for now but eventually I'd like make use of all the authentication methods provided by wasp, but through an api.

Accessing API endpoing from postman

After following the API tutorial, I attempted to post a GET request to http://localhost:3000/foo/bar and the response is just the web-app/index.html file. When following the tutorial example of using the api from the client, I successfully get my data: import React, { useEffect } from "react";...

can i use wasp for big production apps?

I need to know how reliable is using wasp for my big client projects that could have 1M users or more and need to be fullt maintainable with high availability %

websocket definition?

I've been trying to follow along with https://wasp-lang.dev/blog/2023/08/09/build-real-time-voting-app-websockets-react-typescript and https://wasp-lang.dev/docs/advanced/web-sockets to get websockets working with the open-saas demo app template. When I attempt to use ```...

Automatic log in upon sign up

Hi there - is there a way to automatically log a user in upon sign up?

Disable Email Verification in Production

Hi folks, love the framework! Was wondering if there's a way to disable email verification? To clarify, email/password login is good, just don't want/need users to go through email verification (for now). Equally, any idea how to get rid of this alert on sign up? Thanks!...
No description

Best Solution to Automate Workflows

I definitely need advice. Im beginning to automate workflows in businesses (connecting APIs with an LLM on top) Im about to start developing for clients. I had always used make .com before because it’s easy to connect APIs together. ...

New user fields not recognized

I'm attempting to add some attributes to my user entity that have a relation to other entity attributes. ``` entity User {=psl id Int @id @default(autoincrement())...

React Native Integration

My SAAS app will have a mobile version. I'm using the dummy starter project for the web app, but when the time comes, I'll need to be able to do crud operations from my react native app. I know open-saas has a lot under the hood that makes web app development faster, but can I leverage any of this for my react-native app? I'm worried about how I might connect the mobile app to this one.