Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guoxiangke/lms2021
Refactor of LMS with laravel v8 and php 8. ALL IN Docker
https://github.com/guoxiangke/lms2021
Last synced: 15 days ago
JSON representation
Refactor of LMS with laravel v8 and php 8. ALL IN Docker
- Host: GitHub
- URL: https://github.com/guoxiangke/lms2021
- Owner: guoxiangke
- Created: 2021-10-31T14:49:50.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-31T23:33:07.000Z (about 3 years ago)
- Last Synced: 2024-11-08T15:25:20.317Z (2 months ago)
- Language: PHP
- Size: 74.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: docs/README.md
Awesome Lists containing this project
README
# README.md
## GOAL
- ALL IN Docker
- Refactor of LMS with laravel v8 and php 8.## Installing laravel/laravel (v8.6.5)
docker run --rm \
-u ${UID}:${UID} \
-v $(pwd):/app \
-w /app \
composer \
php -d memory_limit=-1 \
/usr/bin/composer \
create-project --prefer-dist laravel/laravel \
laravel## Develop
- cp .env laravel/
- sudo chown 33:33 laravel/storage/ -R## Install PEST
docker-compose exec app composer require pestphp/pest-plugin-laravel --dev## TDD test
docker-compose exec app php artisan test
docker-compose exec app vendor/bin/phpunit --filter xxx