Livewire TODO app Demo - [Livestream August 31 2024]
  • PHP 89.7%
  • Blade 9.3%
  • JavaScript 0.9%
Find a file
Ravish Dussaruth 76be9146fc
First commit
- Project installation
2024-09-08 15:22:47 +04:00
app First commit 2024-09-08 15:22:47 +04:00
bootstrap First commit 2024-09-08 15:22:47 +04:00
config First commit 2024-09-08 15:22:47 +04:00
database First commit 2024-09-08 15:22:47 +04:00
public First commit 2024-09-08 15:22:47 +04:00
resources First commit 2024-09-08 15:22:47 +04:00
routes First commit 2024-09-08 15:22:47 +04:00
tests First commit 2024-09-08 15:22:47 +04:00
.gitignore First commit 2024-09-08 15:22:47 +04:00
artisan First commit 2024-09-08 15:22:47 +04:00
composer.json First commit 2024-09-08 15:22:47 +04:00
composer.lock First commit 2024-09-08 15:22:47 +04:00
dump.rdb First commit 2024-09-08 15:22:47 +04:00
package-lock.json First commit 2024-09-08 15:22:47 +04:00
package.json First commit 2024-09-08 15:22:47 +04:00
phpunit.xml First commit 2024-09-08 15:22:47 +04:00
postcss.config.js First commit 2024-09-08 15:22:47 +04:00
README.md First commit 2024-09-08 15:22:47 +04:00
tailwind.config.js First commit 2024-09-08 15:22:47 +04:00
vite.config.js First commit 2024-09-08 15:22:47 +04:00

Laravel Moris Todo App

Follow the steps below to clone and set up the project on your local machine.

Prerequisites

Make sure you have the following installed on your machine:

  • PHP (>= 8.2)
  • Composer
  • Node.js & NPM
  • Git
  • A database (MySQL, PostgreSQL, etc.)

Getting Started

1. Clone the Repository

Clone the repository using the following command:

git clone https://github.com/Laravel-Moris/livewire-todo-app-demo.git

2. Install Project dependencies

cd livewire-todo-app-demo

Installing composer dependencies

composer install

Next, install Node.js dependencies:

npm install

3. Set Up Environment File

Create a copy of the .env.example file and rename it to .env:

cp .env.example .env

4. Generate Application Key

Generate the application key using:

php artisan key:generate

7. Configure Environment Variables

Update the .env file with your database credentials and any other necessary configurations (e.g., DB_HOST, DB_PORT, DB_DATABASE, DB_USERNAME, DB_PASSWORD).

8. Run Migrations

Run the following command to set up the database:

php artisan migrate

9. Run the Application

Start the development server:

npm run dev
php artisan serve

The application will be accessible at http://127.0.0.1:8000.

How to contact us.