Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fabdoc27/jobpulse

A job portal where companies can post openings and candidates can apply, with an admin-controlled approval system to ensure quality job listings.
https://github.com/fabdoc27/jobpulse

bootstrap laravel mysql php

Last synced: 14 days ago
JSON representation

A job portal where companies can post openings and candidates can apply, with an admin-controlled approval system to ensure quality job listings.

Awesome Lists containing this project

README

        

# Job Pulse

This project works with Laravel 10.x, PHP 8.1 or higher, and a MySQL database.

## Getting Started

Follow these steps to set up the project:

1. **Clone the repository and navigate to the directory:**

```shell
git clone [email protected]:Fabdoc27/JobPulse.git
cd JobPulse
```

2. **Install the dependencies:**

```shell
composer install
```

3. **Create the environment file:**

```shell
cp .env.example .env
```

4. **Generate the application key:**

```shell
php artisan key:generate
```

5. **Run the database migrations:**

```shell
php artisan migrate
```

6. **Seed the database:**

```shell
php artisan db:seed
```

7. **Start the development server:**

```shell
php artisan serve
```