Skip to content

Degovan/degovan

Repository files navigation

Logo
GitHub repo size GitHub

About

Repository containing the source code of the main Degovan website.

Requirements

  • PHP >= 8

Getting Started

  • Clone or download this repository

    git clone https://github.com/Degovan/degovan
    cd degovan
  • Install all dependencies

    composer install
  • Copy environment file

    cp .env.example .env
  • Setup Laravel app

    php artisan key:generate
    php artisan migrate --seed

Contributing

  • Create a new branch, then do a pull request so we can review the code and what features you added
  • Run php artisan test to ensure your passed all testing
  • Run ./vendor/bin/pint to ensure your code is in accordance with the laravel coding standard
  • The changes you make must pass all the tests