/find-a-pr

The source code for the findapr.io website

Primary LanguagePHP

About Find A PR

FindAPR

This is the official repository for Find A PR. Find A PR is a platform that curates a list of issues around Laravel based project.

Requirements

The following tools are required in order to start the installation.

Installation

Here is how you can run the project locally:

  1. Clone this repo

    git clone https://github.com/ash-jc-allen/find-a-pr.git
  2. Go into the project root directory

    cd find-a-pr
  3. Copy .env.example file to .env file

    cp .env.example .env
  4. Create database find_a_pr (you can change database name)

  5. Go to .env file

    • set database credentials (DB_DATABASE=find_a_pr, DB_USERNAME=root, DB_PASSWORD=)

    Make sure to follow your database username and password

  6. Install PHP dependencies

    composer install
  7. Generate app key

    php artisan key:generate
  8. Run migration

    php artisan migrate
    
  9. Run server

    php artisan serve