Follow the steps below to get a local instance of Prueba Soporte running. Complete the Requirements checklist before you begin.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/estebansalas94/Prueba-Soporte/llms.txt
Use this file to discover all available pages before exploring further.
Install PHP dependencies
Install all Composer packages defined in
composer.json.On production deployments, use
composer install --no-dev --optimize-autoloader to skip development packages.Copy the environment file
Create your local Then open
.env file from the provided example..env and update the database credentials to match your local setup. See Configuration for a full description of every variable.Create the database
Create the
prueba_soporte database in MySQL before running migrations.If using SQLite, also set
DB_CONNECTION=sqlite and DB_DATABASE=/absolute/path/to/database/database.sqlite in your .env file.Run database migrations
Apply all migrations, including the
tasks table created in 2024_09_09_123452_create_task.php.Start the development server
Start the Laravel built-in server.The application is now available at http://localhost:8000. The root route (
/) renders the login page. After authenticating, navigate to /tasks to use the task manager.Verify the installation
Once the server is running, confirm the following routes are accessible:| Route | Description |
|---|---|
/ | Login page |
/dashboard | Dashboard (requires authentication) |
/tasks | Task list view (requires authentication) |
/tasks/index | JSON endpoint returning incomplete tasks |