Can I empty/drop my DB to reset it?
# orm-help
i
Can I empty/drop my DB to reset it?
n
Of course, why not?
i
I just removed all the databases (except postgres) and still get the same error.
n
Is there a service running at the default endpoint?
That's the complete service 🙂
n
What is
<http://graphql.docker.localhost:8100>
?
i
It gives me the playground, however with the error above in the console
I'm using Docker and Traefik as HTTP Proxy, so that's why i can mount the service at
<http://graphql.docker.localhost>
.
n
can you run the following query on `http://graphql.docker.localhost:8100/management`:
Copy code
query {
  serverInfo {
    version
  }
}
i
Yes, no errors there
1.14.2
n
Great. Looks like your service is simply not deployed. Run
prisma deploy
to deploy it.
i
ahh, right, okay. I was wondering how to get there but forgot there's a client/CLI on the host system for that
I was trying to SSH/bash into the container (and failing(
thanks
👍 1
n
ah got it
you would not SSH into your container to deploy something, you can use the CLI or HTTP against the
/management
API
Is there a particular reason you use
1.14
and not
1.18
?
i
None. I started the project at that time. I'll grab the latest 😄
😄 1