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
Contient prettier avec un configuration de base ainsi qu'un plugin Tailwindcss pour formatter les classes Tailwindcss
Contient également eslint avec une configuration de base
Contient une bdd Prisma avec 2 entités de base User et Post
Lancer une migration après une modification des schemas :
npx prisma generate
# et ensuite
npx prisma db push
Commencer
Cloner le projet
Setup l'origin du projet avec les commandes suivantes :
# Pour voir l'origin actuelle du projet
git remote -v
# Pour supprimer l'origin actuelle du projet
git remote remove origin
# Pour ajouter l'origin de votre futur projet
git remote add origin <url_de_votre_projet_git>