Skip to content

Latest commit

 

History

History
41 lines (21 loc) · 1.13 KB

readme.md

File metadata and controls

41 lines (21 loc) · 1.13 KB

An awesome event calendar for Wichita, KS.

Getting Started

Wichitawesome is built with Laravel.

Install Dependencies

Run Composer in the root directory.

composer install

Ensure that you have Node.js on your machine, it is required to install Gulp and Elixir in the next steps.

Frontend assets are compiled with Laravel Elixir.

First, install Gulp.

npm install --global gulp

Then, install Elixir.

npm install

Run gulp in the root directory to begin watching for file changes in /resources/assets.

Setup Database

Create a new MYSQL database.

Copy .env.example, rename it to .env, and update it with your database info. If you are using MAMP, you might have to add DB_SOCKET=/Applications/MAMP/tmp/mysql/mysql.sock to the .env file to get the database connection working.

Once your database connection is setup, run migrations.

php artisan migrate

Then, seed the database.

php artisan db:seed