...
Prisma keeps giving me strange bugs/I don't understand it, how do I learn more?
Probably Whenever a new migration is added to the develop branch on GitHub and you pull it, your computer hasn’t run the migration yet so you’re out of sync with what the code is doing and what your database can do. To fix this, run
yarn prisma:reset
to reset your database and run all the migrations. To learn more about the Prisma commands, see the below linkCheck out the Software Prisma FAQ
There is a lot of useful information in the prisma docs! Specifically, the environment files docs and the database URL formatting docs.
...
Yarn is our new package manager and is replacing npm. This means you should never run
npm install
or anynpm run ...
command. Now it is alwaysyarn install
oryarn ...
(no need forrun
keyword at all). Yarn is a lot faster (install times <5 seconds if you already have everything and are just updating) and also doesn’t change thepackage-lock.json
every time which is nice.
General FAQs
My prettier isn’t working, but only on Github?
Run this command in your CLI: npx prettier --write file_path
What does XXX mean?
Please navigate to the glossary page to find some of the common confusing terms that we use regularly! If there’s anything not on there, feel free to reach out to any of us about it (and let us know if you think it should be added)!