项目作者: Lusitaniae

项目描述 :
Titanic Passengers - Laravel Lumin REST API mirred from
高级语言: PHP
项目地址: git://github.com/Lusitaniae/Titanic-API.git
创建时间: 2018-10-28T19:49:49Z
项目社区:https://github.com/Lusitaniae/Titanic-API

开源协议:MIT License

下载


Titanic Passenger API

Build Status
License
Quality Gate Status

The Titanic Passenger API is a simple RESTful API built on PHP Lumen.

It provides a simple CRUD interface to interact with the imported passenger data.

API

Display welcome page

curl localhost:8080/api/v1/

Display all passengers

curl localhost:8080/api/v1/passengers

Display passenger id 3

curl localhost:8080/api/v1/passenger/3

Create a new passenger

  1. curl --header "Content-Type: application/json" \
  2. --request POST \
  3. --data '{"survived":0,"pclass":"3","name":"Dummy","sex":"male","age":12,"siblings_spouses_aboard":1,"parents_children_aboard":0,"fare":7.25}' \
  4. localhost:8080/api/v1/passenger

Update an existing passenger (id 6)

  1. curl --header "Content-Type: application/json" \
  2. --request PUT \
  3. --data '{"survived":0,"pclass":"3","name":"Dummy","sex":"male","age":12,"siblings_spouses_aboard":1,"parents_children_aboard":0,"fare":7.25}' \
  4. localhost:8080/api/v1/passenger/6

Delete a passenger (id 890)

  1. curl --header "Content-Type: application/json" \
  2. --request DELETE \
  3. localhost:8080/api/v1/passenger/890

Docker

Bootstrap the Titanic Passenger API using docker-compose:

Build the containers

docker-compose up --build -d

Run database migrations

docker-compose exec app php artisan migrate --seed

Run integration tests

docker-compose exec app vendor/bin/phpunit

K8s

!! This is largely WIP !!

Change directory

cd resources/docker/kubernetes/

Apply configurations to your k8s cluster

kubectl create -f .