Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prisma studio not loading but saying "We are getting things ready for you" #1308

Open
PlinxyIsKing opened this issue Jan 23, 2025 · 1 comment
Labels
kind/bug A reported bug.

Comments

@PlinxyIsKing
Copy link

Bug description

So when i use the command "bun prisma studio" i get sent to the localhost:5555 link but it just keeps saying we are getting things ready for you, no error, nothing and its been like this for over an hour and ive restarted multiple times, if anyone could help that would be amazing!

How to reproduce

Expected behavior

Ive been in the studio before so i expected to see all my tables ect..

Prisma information

datasource db {
provider = "sqlite"
url = "file:./database.sqlite"
}

generator client {
provider = "prisma-client-js"
}

enum Tier {
Free
Starter
Enterprise
}

model User {
id String @id @default(cuid())
email String @unique
password String
name String?
tier Tier @default(Free)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
apps Apps[]
}

model Apps {
id String @id @default(cuid())
email String
name String?
description String? // Made optional
createdAt DateTime @default(now())
userId String // Foreign key to User
user User @relation(fields: [userId], references: [id])
}

Environment & setup

  • OS: mac-->
  • Browser:
  • Database:

Prisma logs

No response

@PlinxyIsKing PlinxyIsKing added the kind/bug A reported bug. label Jan 23, 2025
@PlinxyIsKing
Copy link
Author

Shit mb now that i check there are some console errors but i doubt there related,

downloadable font: download failed (font-family: "Inter" style:normal weight:400 stretch:100 src index:0): status=2147746065 source: http://localhost:5555/inter-latin-400-normal.27ae72da.woff2
downloadable font: download failed (font-family: "Inter" style:normal weight:400 stretch:100 src index:1): status=2147746065 source: http://localhost:5555/inter-all-400-normal.4c1f8a0d.woff
Studio version 0.503.0 index.js:1:82190
GET
http://localhost:5555/inter-latin-400-normal.27ae72da.woff2
[HTTP/1.1 404 Not Found 71ms]

downloadable font: download failed (font-family: "Inter" style:normal weight:400 stretch:100 src index:0): status=2147746065 source: http://localhost:5555/inter-latin-400-normal.27ae72da.woff2
GET
http://localhost:5555/inter-all-400-normal.4c1f8a0d.woff
[HTTP/1.1 404 Not Found 31ms]

downloadable font: download failed (font-family: "Inter" style:normal weight:400 stretch:100 src index:1): status=2147746065 source: http://localhost:5555/inter-all-400-normal.4c1f8a0d.woff

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug A reported bug.
Projects
None yet
Development

No branches or pull requests

1 participant