Skip to content

tariquedev/simple-task

Repository files navigation

Simple Laravel Task Manager

A straightforward task management application built with the Laravel framework.

Prerequisites

Before you begin, ensure you have the following installed on your local machine:

Local Setup & Installation

Follow these steps to get the project running on your local server.

  1. Clone the repository:

    git clone https://github.com/tariquedev/simple-task
    cd simple-task
  2. Install PHP Dependencies: Use Composer to install the required PHP packages if you haven't on your machine otherwise skip this step.

    composer install
  3. Create Environment File: Copy the example environment file and generate your application key.

    cp .env.example .env
    php artisan key:generate
  4. Configure .env file: Open the .env file 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
  5. Run Database Migrations: Create the necessary tables in your database.

    php artisan migrate
  6. 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].

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors