LaraGigs is a website where you can list or find your job listings.
To get a local copy up and running, follow these simple steps:
Make sure you have the following installed on your computer:
- PHP 8.1 or higher
- Composer
- Node.js and npm
- MySQL
-
Clone the repository
git clone https://github.com/mertbag96/laragigs.git
-
Navigate to the project directory
cd laragigs
-
Install PHP dependencies
composer install
-
Install Node.js dependencies
npm install
-
Compile assets
npm run dev
-
Copy the
.env.example
file to.env
cp .env.example .env
-
Generate an application key
php artisan key:generate
-
Configure your database settings in the
.env
fileDB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_database DB_USERNAME=your_username DB_PASSWORD=your_password
-
Run database migrations and seed your database with fake data
php artisan migrate --seed
-
Start the development server
php artisan serve
Your application should now be running on http://localhost:8000.