quiz_app
v0.1.1
แบบทดสอบแบ็กเอนด์ API โดยใช้ Laravel 10, Sail (นักเทียบท่าเขียน), GraphQL พร้อมส่วนหน้า Vue 3
Laravel - เวอร์ชัน 10.10.0
PHP - เวอร์ชัน 8.2.5
PHPUnit - เวอร์ชัน 10.1.2
โหนด - เวอร์ชัน 18.16.0
เวลาบ่ายโมง - v9.6.4
(ลิขสิทธิ์ทั้งหมดข้างต้นยังคงเป็นของเจ้าของที่เกี่ยวข้อง)
# clone this project
$ git clone https://github.com/hfagerlund/quiz_app.git
$ cd quiz_app
$ cp .env.example .env
# ...and create .env.testing, customize .env and /config/database.php for your db
$ composer install --ignore-platform-reqs
# start Sail (leave this running in its own terminal tab)
$ ./vendor/bin/sail up
# in a new terminal tab:
$ ./vendor/bin/sail npm install
$ ./vendor/bin/sail artisan key:generate
$ ./vendor/bin/sail artisan migrate:fresh --seed
$ ./vendor/bin/sail npm run dev
# browse to 0.0.0.0
# stop Sail
$ ./vendor/bin/sail down
# check state of services
$ docker-compose ps
.env | .env.การทดสอบ |
---|---|
APP_ENV=ท้องถิ่น | APP_ENV=การทดสอบ |
DB_CONNECTION=mysql | DB_CONNECTION=test1 (ตรงกับ ใน phpunit.xml) |
DB_DATABASE=db_for_application | DB_DATABASE=db_for_testing (สอดคล้องกับ , ใน phpunit.xml) |
# run all tests (feature, unit, database etc.)
$ ./vendor/bin/sail artisan test
# run all tests (for front-end, Vue components)
$ ./vendor/bin/sail npm run test
# run a specific test
$ ./vendor/bin/sail test --testsuite Feature --filter=DatabaseTest
# generate (feature) test
$ ./vendor/bin/sail php artisan make:test HTTPResponseTest
# generate (unit) test
$ ./vendor/bin/sail php artisan make:test MyUnitTest --unit
# output code coverage stats to terminal
$ ./vendor/bin/sail php artisan test --coverage
# install Dusk (end-to-end testing, browser automation)
$ ./vendor/bin/sail composer require --dev laravel/dusk
$ ./vendor/bin/sail php artisan dusk:install
# generate model, migration
$ ./vendor/bin/sail artisan make:model -m Question
# generate model, migration, factory
$ ./vendor/bin/sail artisan make:model Question -m -f
# generate GraphQL type
$ ./vendor/bin/sail artisan make:graphql:type QuestionType
# install Laravel 10 app (including Sail, MySQL, Redis, Selenium)
$ curl -s https://laravel.build/new-sail-application | bash
# install library for GraphQL
$ ./vendor/bin/sail composer require rebing/graphql-laravel
## publish config file (from /vendor dir to /config/graphql.php)
$ ./vendor/bin/sail php artisan vendor:publish --provider= " RebingGraphQLGraphQLServiceProvider "
# cache configuration
$ ./vendor/bin/sail php artisan config:cache --env=testing
# clear configuration cache
$ ./vendor/bin/sail php artisan config:clear
# run migrations
$ ./vendor/bin/sail artisan migrate
# drop all tables, migrate, seed db
$ ./vendor/bin/sail artisan migrate:fresh --seed
# dump database schema (ie. ' squash ' migrations into a single SQL file)
$ ./vendor/bin/sail php artisan schema:dump
# access MySQL command-line client
$ ./vendor/bin/sail mysql
# Node, npm versions
$ ./vendor/bin/sail node -v
$ ./vendor/bin/sail npm -v
# run Vite development server (provides Hot Module Replacement for Laravel application)
$ ./vendor/bin/sail npm run dev
ลิขสิทธิ์ © 2023 ไฮนี ฟาเกอร์ลุนด์ ใบอนุญาตนำไปใช้กับทุกส่วนของ Quiz_app ที่ไม่ได้รับการดูแลไลบรารีและเฟรมเวิร์กจากภายนอก
กรอบงาน Laravel เป็นซอฟต์แวร์โอเพ่นซอร์สที่ได้รับอนุญาตภายใต้ใบอนุญาต MIT