genyus
WWasp
β’Created by aman03331 on 3/22/2025 in #πquestions
Error when running wasp db migrate-dev
@aman03331 if you need the specific steps for the instructions provided by the bot:
1. Move your project to the Linux file system:
2. Navigate to the project in the Linux file system and try running Wasp again:
11 replies
WWasp
β’Created by aman03331 on 3/22/2025 in #πquestions
Error when running wasp db migrate-dev
@kapa.ai Please explain the cause and resolution of the following error message shown in a WSL2 environment:
11 replies
WWasp
β’Created by gumboots on 3/19/2025 in #πquestions
Encrypting email address in db with Email Auth
A few thoughts:
1. While email addresses are indeed PII, they're generally considered as non-sensitive, so encrypting them β especially in isolation β would offer marginal privacy benefits for your users, while introducing non-trivial technical challenges for you.
2. Encryption introduces a set of new considerations. How are you going to store and retrieve your encryption keys securely? What's your strategy if a key needs to be revoked? What happens if an attacker gains access to more than just the database?
3. Encrypting at the application level means you'd need to modify every touchpoint in your codebase that reads or writes a user's email address (e.g. payment subscriptions, newsletters, etc). It might be better to try database-level encryption (e.g. pgcrypto), although it's not obvious how well that might work with Wasp/Prisma
Is there a specific reason you want to encrypt your email addresses? If you want to improve your overall security/privacy posture, I'd suggest there are other, less disruptive ways to do it:
- Regular system audits
- Tightening access controls
- Implementing logging/monitoring and intrusion detection
- Minimising stored PII data volume
17 replies
WWasp
β’Created by mario.p on 3/13/2025 in #πquestions
How to integrate Swagger UI?
Thanks, will do
11 replies
WWasp
β’Created by mario.p on 3/13/2025 in #πquestions
How to integrate Swagger UI?
Yes, if the comments could be carried through, it would be work once Swagger is installed and configured
11 replies
WWasp
β’Created by G35x on 3/9/2025 in #πquestions
/app/src/client VS /app/src/server?
Yep, I had the same issues when I first started the project a couple months ago, so I donβt think itβs even a new problem. Defining the structure should make a noticeable difference
20 replies
WWasp
β’Created by G35x on 3/9/2025 in #πquestions
/app/src/client VS /app/src/server?
I actually generated it with ChatGPT sometime ago to include in my .cursorrules file. This wasnβt generated from an existing directory structure, I just prompted it with the structure I wanted
20 replies
WWasp
β’Created by mario.p on 3/13/2025 in #πquestions
How to integrate Swagger UI?
@mario.p this was something I had way down on my backlog, but your question prompted me to try and play with it for a bit, but from what I've found so far, it doesn't seem possible right now.
I attempted a few different approaches:
1. Implementing Swagger directly. This involved installing the possible practical.
swagger-jsdoc
and swagger-ui-express
packages, creating a new api namespace with middleware for the Swagger UI at the desired path. I also found I needed to install helmet
so that I could disable CSP and HSTS at that path, for the docs to be rendered.
However, the conclusion was that because Wasp generates the final routes, there's no way to define the JSDoc comments in a persistent way in your source code, so the output was always empty (I did verify that adding comments to the built code works, but obviously thatβs not maintainable).
2. I then tried to use express-oas-generator
, but they want you to hook into specific points of the express server lifecycle, which Wasp doesn't expose, so I left that one alone.
3. Finally, I attempted using swagger-autogen
and while it can generate the basic route definitions, I was faced with the same problem as #1 above, where there's no way to define the necessary comments in the generated code.
Happy to be corrected by a member of the team, but as far as I can tell, it's not currently 11 replies
WWasp
β’Created by Ringo on 3/12/2025 in #πquestions
Google OAuth : Missing required parameter: scope
No, he's asking you to share your
configFn
implementation, which in your case is the getGoogleAuthConfig
function20 replies
WWasp
β’Created by Omen on 3/11/2025 in #πquestions
Custom database is active and accepting connections but I cannot start the project
Is your database local/remote? Are you able to connect to the same URL from other tools, e.g. terminal, db admin GUI?
11 replies
WWasp
β’Created by G35x on 3/9/2025 in #πquestions
/app/src/client VS /app/src/server?
from what I've gathered, grouping the operations.ts files inside of the directory for any given feature isn't a cardinal sin and may even lend to easier maintenance in the future.If it helps, the following how I organised my current project. This is an entirely opinionated structure, so feel free to ignore or adapt as you see fit, but hopefully it might give you one example of the many ways you can organise your codebase:
20 replies
WWasp
β’Created by Jhon. All on 3/9/2025 in #πquestions
error in main.wasp when PrismaSchemaFolder active.
This sounds like a Prisma/VSC issue as opposed to anything Wasp-specific, but this issue might be relevant.
21 replies
WWasp
β’Created by G35x on 3/9/2025 in #πquestions
/app/src/client VS /app/src/server?
As the bot suggested, youβre free to organise your code within the
src
directory as you please without any security or technical implications.
However, your current setup doesnβt sound particularly intuitive. Imagine if you had a collaborator join the project; they wouldnβt expect to find server-side code like operations.ts
in the client
directory. If you are going to retain the original client
and server
directories, then you should organise your code accordingly.
I personally prefer and use the feature-based arrangement as mentioned by the bot, but it really is up to you to choose a structure that best suits the scale of your project and your personal coding style.20 replies
WWasp
β’Created by Jhon. All on 3/9/2025 in #πquestions
error in main.wasp when PrismaSchemaFolder active.
Wasp doesn't support this preview feature, you'll have to declare all your entities in the main Prisma schema file
21 replies
WWasp
β’Created by pollastrepiupiu on 3/3/2025 in #πquestions
Error with Mage
You can start here: https://wasp.sh/docs/tutorial/create
8 replies
WWasp
β’Created by p4j4r5 on 3/1/2025 in #πquestions
Redirect to user to same page after login
This will work, but by setting
window.location
, you'll force a full page reload and your onboarding page will also be visible in the browser history, which might not be desirable. A better way to redirect the user is useNavigate()
:
18 replies
WWasp
β’Created by Kynetix on 2/23/2025 in #πquestions
cannot find module /auth/ui
I'd start with a global search for 'auth/ui'
12 replies
WWasp
β’Created by wardbox on 2/27/2025 in #πquestions
Wasp typescript error
Oh, that was kapa trying to be helpful, but actually making things worse π
35 replies
WWasp
β’Created by wardbox on 2/27/2025 in #πquestions
Wasp typescript error
Ah. That would be the result of the
wasp ts-setup
command, which would also need to be removed if you're reverting back to the conventional setup. Well, glad you have everything working again35 replies