Pandemonica is the name of the customer service representative in Hell.
Clone the repo
git clone https://ExploitRS/PandemonicaAnd move to the root directory of Pandemonica
cd PandemonicaCopy the .env.example file to .env
cp .env.example .envInstall dependencies
composer iTo run the server
./vendor/bin/sail upNote
After starting the server with sail, it is necessary to prepare the DB.
./vendor/bin/sail artisan migrate
To run the tests
./vendor/bin/sail artisan testTo run tests for a specific feature
// Run tests for the Tasks feature
./vendor/bin/sail artisan test --filter TasksTest
// Run tests for the Categories feature
./vendor/bin/sail artisan test --filter CategoriesTestBefore running tests in Postman, the database must be seeded
./vendor/bin/sail artisan db:seedTo display the valid API endpoints
./vendor/bin/sail artisan route:list -v