Skip to content

Gadurp1/420windycity

Repository files navigation

Prerequisites

You will need the following things properly installed on your computer.

Run "composer install" to download dependencies.

Installation

git clone repo

cd 420windycity

composer install

php artisan vendor:publish

rename .env.example to .env

Generate the app key

php artisan key:generate

Here's where it gets weird.... Talk to me. You'll have to manually run an sql dump into ur local db. Once you've created and dumped the db set your enviroment.

in .env

DB_HOST= UR IP
DB_DATABASE=UR db name
DB_USERNAME= UR username
DB_PASSWORD= UR password

And in config > database.php change to this

'mysql' => [
    'driver'    => 'mysql',
    'host'      => env('DB_HOST'),
    'database'  => env('DB_DATABASE'),
    'username'  => env('DB_USERNAME'),
    'password'  => env('DB_PASSWORD'),
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix'    => '',
    'strict'    => false,
],

Should be all good

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published