Ensure you have the latest versions of Node.js and Git installed.
Execute the commands below:
Note
Before cloning, navigate to the location where you want to keep the project files.
git clone git@github.com:jfmonsa/AtlasBooks-front.git
cd AtlasBooks-front
npm install
npm run dev
This will start the server on the default port, usually http://localhost:5173
.
In general, this project follows the Ship, Show, Ask methodology.
- Make isolated commits as a good practice. This helps in tracking changes and rolling back if necessary.
-
For each feature you want to work on, create a branch with the appropriate prefix:
feature/
for new featuresupdate/
for updates to existing featuresfix/
for bug fixes
Follow this with a descriptive branch name, e.g.,
feature/add-user-authentication
.
- Ensure your branch is up-to-date with the
main
branch. - Open a pull request with a clear and descriptive title.
- Provide a detailed description of the changes you’ve made.
- Request reviews from relevant team members.