repository guide
1.0.0
專案根據測試驅動開發(TDD)方法開發,維護社區感興趣的儲存庫清單。
該專案旨在為 TDD 方法下的 Laravel 開發進行實驗並提供指導。
安裝並運行
$ git clone [email protected]:abrahamuchos/repository-guide.git
$ cd repository-guide
$ composer install
$ npm install
$ php artisan test
或者您可以單獨執行測試
$ php artisan test --filter RepositoryControllerTest::test_anyone
您可以在以下位置單獨查看測試
/tests/Feature/Http/Controllers/PageControllerTest.php
/tests/Feature/Http/Controllers/RepositoryControllerTest.php
建立.env.example
檔案的副本並將其重新命名為.env
。接下來,配置必要的環境變數。
透過運行php artisan key:generate
產生應用程式金鑰。
運行php artisan migrate
建立資料庫表。
執行php artisandb:seed
建立虛擬資料和管理員使用者。
運行php artisan serve
啟動 Laravel 開發伺服器。
要執行此項目,您需要將以下環境變數新增至 .env 檔案中
DB_HOST
DB_PORT
DB_DATABASE
DB_USERNAME
DB_PASSWORD
麻省理工學院