oobook/ucl-app
About UCL APP
UCL APP is a web application that allows users to manage their UCL teams.
Installation
You can install the package via composer:
composer create-project oobook/ucl-app ucl-app
Usage
After installation, if you didn't run the 'composer create-project' command and clone from the github repository, you can run the following commands to install the dependencies and setup project:
composer install
php -r "file_exists('database/database.sqlite') || touch('database/database.sqlite');"
php artisan migrate --seed
If you have completed the installation, you can run the following command to start the project:
php artisan serve
or
If you work on a Docker nginx server, Herd, etc., change APP_URL in the .env file to your server's URL.
...
APP_URL=http://localhost:8000
...
User Management
The project uses Laravel Jetstream for user management. The system must have created a user with the email as following:
test@useinsider.com
12345678
Testing
To run the tests, you can use the following command:
php artisan test
License
The Laravel framework is open-sourced software licensed under the MIT license.