Welcome to the Produktib README! This document offers an overview of our online task management system's features and setup instructions. This guide will help you get started whether you're a developer looking to incorporate this platform into your website or a user interested in making reservations. This project will entail the details of the following functionalities:
- Create an online task management system
- Clone the project in any local directory you like Example using the git CLI
git clone https://github.com/EXEcuted-tech/produktib.git
- CD into the root folder
cd produktib
- Install dependencies
npm install
- Run the project
npm start
- Start your local front-end serve
npm start
- Make sure to that your XAMPP with the imported database and mySQL server is running as well
src\assets
- This is where you place images (.png, .svg, etc...)src\components
- Common components to be used throughout the application, you usually don't wanna touch this foldersrc\common
- Where common utils, style, and colors are compiled and accessed
- When you clone the repository, make sure you are in the
main
branch. You can check by running this command:
git status
Expected output would be:
On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
2.Pull the latest changes
git pull
- When you have finished adding your changes, create a branch using the
Card Number
on your assigned task in Trello
Example for #3:
//1. Create Branch using the command bellow
$ git branch ticket-12
//2. Check if the branch was created
$ git branch
ticket-12
* master
//3. Switch to the newly created branch
$ git checkout ticket-12
//4. Repeat Step 2
$ git branch
* ticket-12
master
//5. Commit your files and either push or pull the changes
$ git add .
$ git commit -m "Testing Push and Pull Request"
$ git push
- Send the pull review link of the new changes you added to the project. The format should look like the link bellow:
https://github.com/EXEcuted-tech/produktib/pull/12