Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 743 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 743 Bytes

Legolas

"Membership Management for HackerspaceSG"

Specifications

wiki/specifications

Initial Setup

Steps to get you started:

  1. Install PHP 5.4 with mcrypt and phpunit

  2. Install composer

  3. Then run composer install in the project root folder

  4. Setup initial database app/database/production.sqlite:

    php artisan migrate:install
    php artisan migrate
5. Ensure all tests are running smoothly

    ```bash
    phpunit

or if you prefer to use composer's phpunit

```bash
vendor/bin/phpunit

6. Start server

    ```bash
    php artisan serve