AC
AC
WWasp
Created by AC on 4/14/2025 in #đŸ™‹questions
Changing favicon for OpenSaaS blog
Thanks both! Yes, I tried putting it in the public folder but the code change I mentioned last night fixed the issue...it was right before I went to bed knowing Wasp's team is mostly in Europe...I should have been more explicit that the issue is resolved.
10 replies
WWasp
Created by AC on 4/14/2025 in #đŸ™‹questions
Changing favicon for OpenSaaS blog
I added to the following file: astro.config.mjs: javascriptstarlight({ // Try adding this to your starlight config: favicon: '/favicon.ico', // ...rest of your config })
10 replies
WWasp
Created by AC on 4/14/2025 in #đŸ™‹questions
Changing favicon for OpenSaaS blog
Unfortunately that didn't work, any other ideas?
10 replies
WWasp
Created by AC on 4/10/2025 in #đŸ™‹questions
Deployment issue on Railway
Solved - another env var mismatch.
6 replies
WWasp
Created by AC on 4/5/2025 in #đŸ™‹questions
Environment variable I need to add to Railway to get GoogleOAuth to work
Sorry, looking through the error messages again, it didn't specifically tell me it was an env var issue, but there was more than enough info to figure out that this was the issue. The key message was TypeError [ERR_INVALID_URL]: Invalid URL... Pretty self-evident that this was caused by an environment variable being missing in production.
11 replies
WWasp
Created by AC on 4/5/2025 in #đŸ™‹questions
Environment variable I need to add to Railway to get GoogleOAuth to work
Yes, it did! I just couldn't figure out which env var it was though because I was rushing. I'm still on the previous version (0.15), will have to update post launch. The rush is because I started this project on Nov 1, and it was supposed to launch on March 1...Had to do a full refactor in March based on alpha testing and QA results almost entirely because my first go at coding was...not great. So then had to redo almost all the DB operations, refactor the frontend, etc. I'm launching it today since it's now solidly passing QA and alpha testing.
11 replies
WWasp
Created by AC on 4/5/2025 in #đŸ™‹questions
Environment variable I need to add to Railway to get GoogleOAuth to work
WASP_SERVER_URL đŸ˜… I should have noted it. I'm launching tomorrow, and ran into a last minute issue with Heroku, so was rushing through the switch to Railway, which my mentor suggested. This was definitely a user issue, not a Wasp issue.
11 replies
WWasp
Created by AC on 4/6/2025 in #đŸ™‹questions
How to add a discount code to OpenSaaS Stripe checkout page?
Thanks! Haha
9 replies
WWasp
Created by AC on 4/6/2025 in #đŸ™‹questions
How to add a discount code to OpenSaaS Stripe checkout page?
For anyone else dealing with this - You need to change checkoutUtilts code to this: export async function createStripeCheckoutSession({ userId, priceId, customerId, mode }: { userId: string, priceId: string; customerId: string; mode: StripeMode; }) { try { const sessionConfig: Stripe.Checkout.SessionCreateParams = { line_items: [ { price: priceId, quantity: 1, }, ], mode: mode, success_url: ${DOMAIN}/checkout?success=true, cancel_url: ${DOMAIN}/checkout?canceled=true, automatic_tax: { enabled: true }, customer_update: { address: 'auto', }, customer: customerId, // Enable promotion codes input field on checkout page allow_promotion_codes: true }; return await stripe.checkout.sessions.create(sessionConfig); } catch (error) { console.error(error); throw error; } }
9 replies
WWasp
Created by AC on 4/6/2025 in #đŸ™‹questions
How to add a discount code to OpenSaaS Stripe checkout page?
I don't see src/server/actions.ts in OpenSaaS. Do you know where I can find the server-side Stripe code in OpenSaaS?
9 replies
WWasp
Created by AC on 4/5/2025 in #đŸ™‹questions
Environment variable I need to add to Railway to get GoogleOAuth to work
Thanks, Kapa! missed adding that variable. Works now!
11 replies
WWasp
Created by AC on 3/26/2025 in #đŸ™‹questions
Does anyone have step-by-step instructions on implementing PostHog in Wasp by any chance?
I'm a bit embarrassed about how easy that was...đŸ˜…
8 replies
WWasp
Created by AC on 3/26/2025 in #đŸ™‹questions
Does anyone have step-by-step instructions on implementing PostHog in Wasp by any chance?
Thanks!!
8 replies
WWasp
Created by Zuck on 5/14/2024 in #đŸ™‹questions
Anyone got RAG working with WASP?
For sure - I'm also happy to hop on a call to show you what I've done (I'd offered to do that before, so just following up on it) - But no pressure!
37 replies
WWasp
Created by Zuck on 5/14/2024 in #đŸ™‹questions
Anyone got RAG working with WASP?
The frontend is still a bit janky, and tbh, I'm still haven't figured out Posthog. But it works!
37 replies
WWasp
Created by Zuck on 5/14/2024 in #đŸ™‹questions
Anyone got RAG working with WASP?
@miho - I'm ready! It was a journey, but I got there - Switched from HuggingFace to self-hosting, and then finally AWS Bedrock, with a Flask layer in between that and my Wasp app.
37 replies
WWasp
Created by AC on 3/19/2025 in #đŸ™‹questions
Has there been any work done to SEO optimize the OpenSaaS landing page?
Oh wow, this is awesome, thank you!
9 replies
WWasp
Created by AC on 3/19/2025 in #đŸ™‹questions
Has there been any work done to SEO optimize the OpenSaaS landing page?
Thank you - These are all very helpful, particularly options 4 and 5 đŸ™‚
9 replies
WWasp
Created by Zuck on 5/14/2024 in #đŸ™‹questions
Anyone got RAG working with WASP?
Yes, for sure, happy to do a screenshare and show you what I've done once I'm past alpha testing which should be in a week or two
37 replies
WWasp
Created by Zuck on 5/14/2024 in #đŸ™‹questions
Anyone got RAG working with WASP?
Wasp + PgVector. But also, keep in mind (1) I've only been coding in earnest for 5 months; (2) I wanted to be able to experiment with different chunking methods; (3) I did some Python data science in uni, so am a bit more familiar with it.
37 replies