This is a simple Task app
Follow these steps to clone and run the project locally:
-
Clone the repository:
git clone https://github.com/vpiselli/todo_app cd todo_app
-
Install PHP dependencies using Composer:
composer install
-
Install Node.js dependencies:
npm install
-
Create a .env file based on the .env.example file. Make sure to set up the SQLite database in the .env file:
DB_CONNECTION=sqlite Note: You need to create a file in the database folder with the name database.sqlite database/database.sqlite
-
Generate the application key:
php artisan key:generate
-
Run database migrations:
php artisan migrate
-
Build the frontend assets:
npm run dev
-
Serve the application:
php artisan serve
The application should now be accessible at http://localhost:8000.