Skip to content

Latest commit

 

History

History
91 lines (62 loc) · 1.57 KB

README.md

File metadata and controls

91 lines (62 loc) · 1.57 KB

LaraGigs

Table of Contents

About the Project

LaraGigs is a website where you can list or find your job listings.

alt text

Installation

To get a local copy up and running, follow these simple steps:

Prerequisites

Make sure you have the following installed on your computer:

  • PHP 8.1 or higher
  • Composer
  • Node.js and npm
  • MySQL

Steps

  1. Clone the repository

    git clone https://github.com/mertbag96/laragigs.git
  2. Navigate to the project directory

    cd laragigs
  3. Install PHP dependencies

    composer install
  4. Install Node.js dependencies

    npm install
  5. Compile assets

    npm run dev
  6. Copy the .env.example file to .env

    cp .env.example .env
  7. Generate an application key

    php artisan key:generate
  8. Configure your database settings in the .env file

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=your_database
    DB_USERNAME=your_username
    DB_PASSWORD=your_password
    
  9. Run database migrations and seed your database with fake data

    php artisan migrate --seed
  10. Start the development server

    php artisan serve

Your application should now be running on http://localhost:8000.