Disclaimer: This open-source project has been shared by the instructor at Fado Code Camp exclusively for demonstration purposes, and is not intended for production use.
Note: Upon completion of the course, the intention is to further develop this project.
- 🔥 Composition API
- 📋 The
<script setup>
syntax. - 📦 Service Pattern
- 🐋 Docker compose
- 🧮 Adminer for database management
- 📧 Mailhog for email testing
- Clone the repository
git clone https://github.com/multiplai-tech/larazillow.git
cd larazillow
- Install the dependencies
npm install
composer install
- Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
- Build the images and start the services:
./vendor/bin/sail build
./vendor/bin/sail up -d
- Start the development server. Note: Execute this on different terminal
npm run dev
php artisan serve