Skip to content

Omnile/booconnect

Repository files navigation

booconnect

This will be the central repo for the Booconnect App.

Setup

For this setup directions, I'll asume that you have NodeJS and PHP 7.* already setup and configured.

  1. For now, clone this repo on your local machine and copy the .env.example to .env

  2. Generate the application key.

  php artisan key:generate
  1. Setup the database in the '.env' file. Replace the database configuration data with your local database specific configuration data.
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=homestead
    DB_USERNAME=homestead
    DB_PASSWORD=secret
  1. Run the database migration command.
  php artisan migrate
  1. Compile the frontend assets: Note: To compile the frontend assets, first ensure that npm is installed on your local machine. I'll assume you have it installed.

Install dependencies using NPM

  npm install;

Compile assets

  npm run dev;
  1. Run tests. If it's all green, then you are right on track.
  composer test

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published