oobook / ucl-app
The UCL App to forecast the champion of the UCL.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2|^8.3|^8.4
- inertiajs/inertia-laravel: ^2.0
- laravel/framework: ^12.0
- laravel/sanctum: ^4.0
- laravel/tinker: ^2.10.1
- tightenco/ziggy: ^2.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/breeze: ^2.3
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
README
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.