A straightforward task management application built with the Laravel framework.
Before you begin, ensure you have the following installed on your local machine:
Follow these steps to get the project running on your local server.
-
Clone the repository:
git clone https://github.com/tariquedev/simple-task cd simple-task -
Install PHP Dependencies: Use Composer to install the required PHP packages if you haven't on your machine otherwise skip this step.
composer install
-
Create Environment File: Copy the example environment file and generate your application key.
cp .env.example .env php artisan key:generate
-
Configure
.envfile: Open the.envfile and update the database credentials.DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_db DB_USERNAME=your_user DB_PASSWORD=your_password
-
Run Database Migrations: Create the necessary tables in your database.
php artisan migrate
-
Serve the Application: You can now start the local development server.
php artisan serve
The application will be available at [http://127.0.0.1:8000].