Happy to see you interested in this project.
- Clone the project:
git clone https://github.com/Liknox/rentread.git
.cd
into the directory. All of the following commands are executed from the root directory of the project. - Make sure you're on the node version prescribed in
.nvmrc
; check withnode -v
, you might need to runnvm use
if that's not being run on changing directories in your setup. - Install dependencies:
npm i
- Now, to the meat of it: you would like to start an app localy and also browse it around on your mobile device. So you
- Run
npm run dev
- this will first build the project locally, and then displays it in the browser locally.
- Run
┌──────────────────────────────────────────────────┐
│ │
│ VITE v5.4.14 ready in * ms │
│ │
│ - Local: http://localhost:3000 │
│ - Network: http://172.50.0.41:3000 │
│ - Network: http://192.168.2.10:3000 │
│ - Network: http://172.82.128.5:3000 │
│ │
└──────────────────────────────────────────────────┘
The bottom URL should work on your mobile device if it's on the same network as your computer.
-
Tweak the library in
packages/rentread/src
. To see the changes, stop the server withCTRL-C
and donpm run dev
again. Yeah, that's tedious. 😉 -
If you like the changes you made, create a branch, commit the changes, make a fork of the project in your personal GitHub account, push the changes to a branch in your personal account, and create a merge request from that branch to https://github.com/Liknox/rentread.
Currently a manual process handled by the maintainer, to be automated.