You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is actually a cool approach to doing things although I need you to clarify just a very simple thing for me
How did you go about your environment variable in vercel did you use FASTAPI_URL == port 8000?
I just want to know how I can set my FASTAPI_URL even though i bought my own domain
This is actually a cool approach to doing things although I need you to clarify just a very simple thing for me
I just want to know how I can set my FASTAPI_URL even though i bought my own domain
├── frontend/ (Next.js)
│ ├── app/
│ │ ├── page.tsx
│ │ ├── auth/
│ │ │ └── page.tsx
│ │ ├── chat/
│ │ │ └── page.tsx
│ │ ├── api/
│ │ │ └── auth/
│ │ │ └── [...nextauth]/
│ │ │ └── route.ts
│ │ └── components/
│ │ └── auth/
│ │ ├── auth-heading.tsx
│ │ └── close-button.tsx
│ ├── next.config.js
│ └── package.json
├── backend/ (FastAPI)
│ ├── main.py
│ ├── api/
│ │ └── routes/
│ │ └── auth.py
│ ├── schemas/
│ │ └── auth.py
│ ├── services/
│ │ ├── auth.py
│ │ └── supabase.py
│ └── config/
│ └── settings.py
The text was updated successfully, but these errors were encountered: