Thanks to visit codestin.com
Credit goes to github.com

Skip to content

A Single page Web Application for selling and buying real estate, using Laravel/Vue.js, Tailwind CSS, and Inertia.js.

License

Notifications You must be signed in to change notification settings

devmuhammadzaki/larazillow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Larazillow

Larazillow is a Single page Web Application for selling and buying real estate, built with Laravel/Vue.js, Tailwind CSS, and Inertia.js.

Demo

Due to obvious financial issues, I was not able to host the project on any free hosting platform. Therefore, I have decided to provide a poor-quality video for it.

Installation

  1. Download the code by clicking Code, Download ZIP. Or if you have Git install in your machine, you can run this in your terminal.
git clone https://github.com/devmuhammadzaki/larazillow.git
  1. Change directory to your local copy of larazillow in your terminal. Then install composer dependencies.
composer install
  1. Install frontend dependencies.
npm install
  1. Copy .env file from .env.example. In NIX machine you can use this command.
cp .env.example .env
  1. Prepare a database. You can use this command.
mysql -uroot -e "CREATE DATABASE larazillow_db"

If you have password for your database, you need to specify -p on the command.

  1. Configure your database and email sender settings in .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=larazillow_db
DB_USERNAME=root
DB_PASSWORD=

MAIL_MAILER=smtp
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"
  1. Migrate database tables and seed them with fake data
php artisan migrate --seed
  1. Generate a key for you application
php artisan key:generate
  1. Link storage (for photos and icons associated with the project)
php artisan storage:link
  1. Run php development server
php artisan serve
  1. Run node.js development server (alongside php server)
npm run dev

Your local copy of larazillow is ready to access in your browser ;)

About

A Single page Web Application for selling and buying real estate, using Laravel/Vue.js, Tailwind CSS, and Inertia.js.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages