- Install pnpm
$ pnpm install
- Git clone the repository
$ cd to-local-repository
$ git clone git@github.com:JavierPerezGarcia/Pitayapp.git
$ pnpm run dev
- Go to http://localhost:3000
- Git fetch and git pull of the changes
- git fetch es el comando que le dice a tu git local que recupere la última información de los metadatos del original (aunque no hace ninguna transferencia de archivos. Es más bien como comprobar si hay algún cambio disponible).
- git pull por otro lado hace eso Y trae (copia) esos cambios del repositorio remoto.
$ cd to-local-repository
$ git fetch origin
$ git pull
- Start the server
$ pnpm run dev
Happy coding!