TASKIFY-API

license last-commit repo-top-language repo-language-count

Developed with the software and tools below.

Laravel PHP Vite JSON


🚀 Getting Started

Requirements

Ensure you have the following dependencies installed on your system:

  • PHP: version 8.2.*
  • Composer: version 2.7.*

⚙️ Installation

  1. Clone the Taskify-API repository:
git clone https://github.com/abdelghani1002/Taskify-API
  1. Change to the project directory:
cd Taskify-API
  1. Install the dependencies:
composer install
npm install
  1. Generate key
php artisan key:generate
  1. Setup .env file:
cp .env.example .env
  1. Setup database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE="DB name"
DB_USERNAME="username"
DB_PASSWORD="password"

🤖 Running Taskify-API

Use the following command to run Taskify-API:

php artisan serve

🤝 Contributing

Contributions are welcome! Here are several ways you can contribute:

Contributing Guidelines
  1. Fork the Repository: Start by forking the project repository to your GitHub account.
  2. Clone Locally: Clone the forked repository to your local machine using a Git client.
git clone https://github.com/abdelghani1002/Taskify-API
  1. Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
  1. Make Your Changes: Develop and test your changes locally.
  2. Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
  1. Push to GitHub: Push the changes to your forked repository.
git push origin new-feature-x
  1. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.