-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfill_db.sh
10 lines (10 loc) · 2.01 KB
/
fill_db.sh
1
2
3
4
5
6
7
8
9
10
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Samsung Galaxy S9", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Samsung Galaxy S8", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Samsung Galaxy S7", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Motorola Nexus 6", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "LG Nexus 5X", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Huawei Honor 7X", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Apple iPhone X", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Apple iPhone 8", "band_2g":true, "band_3g":true,"band_4g":true,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Apple iPhone 4s", "band_2g":true, "band_3g":true,"band_4g":false,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"
curl -X POST -H "Content-Type: application/json" -d '{"technology": "Nokia 3310", "band_2g":true, "band_3g":false, "band_4g":false,"booked_date":null,"booked_by":null}' --location "http://localhost:8080"