rithvik12345678
rithvik12345678
WWasp-lang
Created by rithvik12345678 on 4/21/2024 in #đŸ™‹questions
How to change logo in google search
@miho Any ideas as to what the issue could be
11 replies
WWasp-lang
Created by rithvik12345678 on 4/21/2024 in #đŸ™‹questions
How to change logo in google search
Even when I open it in an incognito window or when I clear all cache it still shows up in google search results with the wasp logo.
11 replies
WWasp-lang
Created by rithvik12345678 on 4/21/2024 in #đŸ™‹questions
How to change logo in google search
I changed the meta properties in many different ways but the google search results are still showing the wasp logo instead of my logo. Can anyone else help with this?
11 replies
WWasp-lang
Created by rithvik12345678 on 4/21/2024 in #đŸ™‹questions
How to replace wasp logo as favicon in tab
It was a caching issue. When I opened in an incognito window it was no longer an issue.
7 replies
WWasp-lang
Created by rithvik12345678 on 4/21/2024 in #đŸ™‹questions
What file contains the styles for the login and signup page
Okay but I don't just want to modify the style of the buttons. I want to be able to modify the background color, and the colors of all the text, etc. Is it possible to modify absolutely anything on the Auth UI page using this method or is there another way to do it.
7 replies
WWasp-lang
Created by rithvik12345678 on 4/6/2024 in #đŸ™‹questions
How to use wasp deploy fly deploy command in github actions
Yeah it was just that the fly documentation said to get a personal access token using this command in the terminal
fly tokens create deploy -x 999999h
fly tokens create deploy -x 999999h
but when I initally authorized and deployed all the apps it was on a personal access token I created and these two tokens for some reason weren't directing me to the same place. So instead of the access token generated by that command, I created a new personal access token and used that for auth and it worked.
10 replies
WWasp-lang
Created by rithvik12345678 on 4/6/2024 in #đŸ™‹questions
How to use wasp deploy fly deploy command in github actions
I found a different way to fix it
10 replies
WWasp-lang
Created by rithvik12345678 on 4/3/2024 in #đŸ™‹questions
Error when trying to login with google oauth
@miho on the website it says "Validation failed: Cannot read properties of undefined (reading '0')" and I get a 302 error like this: [ Server ] GET /auth/google/callback?state=O2iVwcODfjJZIK7ECMODSp8DBXRfKvWYcYKBL7FvHIY&code=4%2F0AeaYSHCxB3qukDB9eCvMHcnerCnOWCpqwEfw1TJ5yBDXecnWDtAMmUeYxMreeJvYsWI4Zw&scope=email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+openid&authuser=0&prompt=consent 302 675.053 ms - - in the terminal
10 replies
WWasp-lang
Created by rithvik12345678 on 4/3/2024 in #đŸ™‹questions
Error when trying to login with google oauth
None of these apply to me. @miho do you know anything about this
10 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
Ok @miho I tried it this way and it all runs successfully and deploys the site, but the actual code I'm trying to change at server/src/auth/providers/ is not actually changing. Once the build is over that code is exactly the same as the default code even though the copying ran successfully.
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
.wasp and waschangedcode are on the same level
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
The waspchangedcode is in the app dir and .wasp is also in the app dir
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
@miho I've bee trying to do what you said. So I moved my modified files to the root directory, I pushed these changes to my github repo, and added these lines to the dockerfile in my root dir: COPY ./waspchangedcode/createRouter.ts .wasp/build/server/src/auth/providers/oauth/createRouter.ts COPY ./waspchangedcode/signup.ts .wasp/build/server/src/auth/providers/email/signup.ts COPY ./waspchangedcode/verifyEmail.ts .wasp/build/server/src/auth/providers/email/verifyEmail.ts preceding this line: RUN cd .wasp/build/server && npm run bundle However everytime I run wasp deploy fly deploy I get this error:
'#17 [server-builder 13/14] COPY ./waspchangedcode/verifyEmail.ts .wasp/build/server/src/auth/providers/email/verifyEmail.ts\n' +
'#17 ERROR: failed to calculate checksum of ref a9e51645-2607-414a-99bb-1b44bc09a1f9::q2o2ntkq1xkg0xj5u95ofj25b: "/waspchangedcode/verifyEmail.ts": not found\n' +
'\n' +
'#18 [server-builder 11/14] COPY ./waspchangedcode/createRouter.ts .wasp/build/server/src/auth/providers/oauth/createRouter.ts\n' +
'#18 ERROR: failed to calculate checksum of ref a9e51645-2607-414a-99bb-1b44bc09a1f9::q2o2ntkq1xkg0xj5u95ofj25b: "/waspchangedcode/createRouter.ts": not found\n' +
'\n' +
'#19 [server-builder 12/14] COPY ./waspchangedcode/signup.ts .wasp/build/server/src/auth/providers/email/signup.ts\n' +
'#19 ERROR: failed to calculate checksum of ref a9e51645-2607-414a-99bb-1b44bc09a1f9::q2o2ntkq1xkg0xj5u95ofj25b: "/waspchangedcode/signup.ts": not found\n' +
'------\n' +
'#17 [server-builder 13/14] COPY ./waspchangedcode/verifyEmail.ts .wasp/build/server/src/auth/providers/email/verifyEmail.ts\n' +
'#17 ERROR: failed to calculate checksum of ref a9e51645-2607-414a-99bb-1b44bc09a1f9::q2o2ntkq1xkg0xj5u95ofj25b: "/waspchangedcode/verifyEmail.ts": not found\n' +
'\n' +
'#18 [server-builder 11/14] COPY ./waspchangedcode/createRouter.ts .wasp/build/server/src/auth/providers/oauth/createRouter.ts\n' +
'#18 ERROR: failed to calculate checksum of ref a9e51645-2607-414a-99bb-1b44bc09a1f9::q2o2ntkq1xkg0xj5u95ofj25b: "/waspchangedcode/createRouter.ts": not found\n' +
'\n' +
'#19 [server-builder 12/14] COPY ./waspchangedcode/signup.ts .wasp/build/server/src/auth/providers/email/signup.ts\n' +
'#19 ERROR: failed to calculate checksum of ref a9e51645-2607-414a-99bb-1b44bc09a1f9::q2o2ntkq1xkg0xj5u95ofj25b: "/waspchangedcode/signup.ts": not found\n' +
'------\n' +
Saying that the file is not found. waspchangedcode is the folder that contains my modified code. I've tried a bunch of things and nothings been able to fix this error. Do you know what's happening?
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
Oh, really? That's pretty convenient
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
Oh interesting @miho , so are you saying that I can modify the dockerfile in wasp/out to have a command that copies the modified wasp code from wasp/out into wasp/build and it'll use that to generate the website?
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
It's the login and signup buttons that are missing
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
Also @miho Is there a way to see the exact code that fly deploys? I upgraded and it successfully deployed, but some of the functionality on my localhost is missing on my deployed website.
26 replies
WWasp-lang
Created by rithvik12345678 on 3/30/2024 in #đŸ™‹questions
Issue with deploying my wasp app to fly.io
Yeah I'm on 0.12.3, so I'll update and try again
26 replies
WWasp-lang
Created by rithvik12345678 on 3/13/2024 in #đŸ™‹questions
Is it possible to redirect post requests in wasp
Because the whole process of creating my own custom Auth UI is kind of cumbersome because there's a lot of things that happen automatically in the wasp source code that are hard for me to replicate.
6 replies
WWasp-lang
Created by rithvik12345678 on 3/13/2024 in #đŸ™‹questions
Is it possible to redirect post requests in wasp
@martinsos How soon do you think y'all will release the hooks
6 replies