todo laravel dingo api swagger
1.0.0
一個簡單的 API,用於管理使用 Laravel 建立的待辦事項清單。
PHP 7.3 or higher
Laravel 8.0 or higher
將儲存庫克隆到本地:
git clone [email protected]:colyii/clara-coly-todo.git
cd clara-coly-todo
安裝依賴項
composer install
將.env.example
的內容複製到.env
文件,或只需執行以下命令:
# Mac Linux
cp .env.example .env
# Windows
copy .env.example .env
產生應用程式金鑰(如果尚未產生)
php artisan key:generate
運行資料庫遷移
php artisan migrate
運行資料庫種子
php artisan db:seed
運行開發伺服器(輸出將給出地址):
php artisan serve --host=127.0.0.1 --port=8000
./vendor/bin/pest --filter TodoTest
或者
php artisan test
// 成功
{
"success" : 1 ,
"message" : " TODOを表示しました。 " ,
"status_code" : 200 ,
"data" : {
"id" : 4 ,
...
"created_at" : " 2022-08-24 00:12:47 " ,
"updated_at" : " 2022-08-24 00:12:47 " ,
...
}
}
// 失败
{
"success" : 0 ,
"message" : " TODO情報が見つかりませんでした。 " ,
"status_code" : 404
}
https://todo-laravel-dingo-api-swagger.herokuapp.com/