Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 839 Bytes

README.md

File metadata and controls

35 lines (21 loc) · 839 Bytes

Cruddy

Backend CRUD without a line of code

More info @ Laravel Forums

Requirements

PHP >= 5.4

MySQL

Installation

This shipping includes an app that I use for rapid development. You can set it up and see what Cruddy is capable of.

At first you need to clone this repo. It has a submodule that you need to update, so run following commands:

git submodule init && git submodule update && composer install

Then, configure database credentials as you would do in usual Laravel app. Migrate and seed database:

php artisan migrate --package cartalyst/sentry && php artisan migrate --seed

You can now enter the backend by entering <hostname>/backend/users. It will require username and password. The defaults:

[email protected] / admin

Enjoy!