composer installDuplicate the .env.example file and rename it to .env:
./vendor/bin/sail up -d./vendor/bin/sail artisan migrate --seedIn storage/logs/laravel.log file should be API TOKEN KEY. Use it to authenticate when sending requests to API
./vendor/bin/sail artisan queue:workAdd to header Bearer Token
"Authorization": "Bearer {YOUR_AUTH_KEY}"{
"scrape": [
{
"url": "https://tandemum.lt/apie-mus",
"selectors": {
"wrapper": ".team__member",
"map": {
"name": ".team__member-name",
"role": ".team__member-role"
}
}
},
{
"url": "https://quotes.toscrape.com/tag/friendship/",
"selectors": {
"wrapper": ".quote",
"map": {
"text": ".text",
"author": ".author"
}
}
}
]
}