hometechdad
hometechdad
WWasp-lang
Created by hometechdad on 5/5/2023 in #đŸ™‹questions
How to update favicon?
I found https://github.com/wasp-lang/wasp/discussions/934 on this topic. However, I am missing something. I have the following in my app.head section: head: [ "<meta property='og:type' content='website' />", "<meta property='og:image' content='src/client/static/image.png' />", "<link rel='icon' type='image/x-icon' href='src/static/favicon.ico'>", ], I have added my logo as favicon.ico and as image.png in the static folder. I have also deleted the Wasp logo from the folder. However, it is still pulling in the Wasp logo for the favicon from somewhere.. I can not figure out where / why...
12 replies
WWasp-lang
Created by hometechdad on 5/5/2023 in #đŸ™‹questions
Should the STRIPE_KEY in your environment variables be the Secret Key or the Public Key?
Should the STRIPE_KEY in your environment variables be the Secret Key or the Public Key?
3 replies
WWasp-lang
Created by hometechdad on 4/21/2023 in #đŸ™‹questions
How do you set the org slug when deploying to Fly.io
How do you specify what organization you want to deploy to in Fly.io when using wasp deploy fly launch my-wasp-app mia ? I tried the fly commands of -o and --org but neither worked. If I do not add the org, it is failing with this error: Error: org slug must be specified when not running interactively. I added a 2nd organization to my fly.io account because when I first tried, I received an error stderr: "automatically selected personal organization: Jonathan\n" + "Error: Validation failed: Name may only contain numbers, lowercase letters and dashes\n" + "\n", I thought maybe the personal account name had an issue.. But looking back, the "\n" may be due to using WSL?? Not really sure...
19 replies
WWasp-lang
Created by hometechdad on 4/20/2023 in #đŸ™‹questions
How do I add additional products?
I am using the SaaS template and have the 'out of the box' subscription product working. I want to add an additional product option (like the one that exists on the PricingPage.tsx). Here is where my lack of recent dev experience shows. It appears like I would need to pass a var into the stripePayment() call on the PricingPage.tsx noting which button was clicked. And then update Server\Actions.ts to accept that var and update line_items as well as mode in the checkout session based on the details of that var. Is that the best way to approach this? Or is there a simpler path that I am not seeing?
8 replies
WWasp-lang
Created by hometechdad on 4/20/2023 in #đŸ™‹questions
What is the localhost stripe webhook URL?
Using the the wasp SaaS-Template-GPT. What is the URL the stripe webhook should point to? Trying to run this on localhost for now using the stripe CLI (docker).
16 replies