/menova

Primary LanguageBlade

MenovaHub

Run Locally

Clone the project

  git clone https://github.com/MahmoudSayed96/menova-hub.git

Go to the project directory

  cd menova-hub

Install dependencies

  composer install

Copy .env.example and rename to .env

Set database settings

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=db_name
DB_USERNAME=db_user
DB_PASSWORD=db_pass

Generate APP_KEY

php artisan key:generate

Run migrations and seeder

php artisan migrate:fresh --seed

Run server

php artisan serve

Open your browser and write http://locahost:8000