quick question… how to connect to my database from...
# orm-help
s
quick question… how to connect to my database from a sql client app like sequel pro for exploring. after prisma deploy on dev
h
Use your db credentials
If running on docker set a username password, map a port into your machine and connect
graphql create my-app --boilerplate typescript-advanced
which does
prisma deploy
to
<https://us1.prisma.sh/public-hollybell-609/*/dev>
can’t find the database name
h
it in your docker-compose.yml file
see it
default username and password is
prisma
s
hmm let me check again
h
add a ports propert to the mysql db in the file
Copy code
ports:
      - '3306:3306'
s
?
where is the docker-compose file in that boilerplate
h
`so that you can access the docker instance on your machine at localhost:3306 , map to other port if you are running mysql on your own machine at same port
Are you using prisma test servers?
s
yup
now got my point
h
you cant access the db then raw
cause it is shared with other users, it is meant only for prisma testing
s
gotcha
🙂 1
will move out to my local
thanks man
🙌 1
h
you need docker-compose installed for that, make sure you have it