MauMaGau / LIT

Laravel Initial Tip

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LIT - Laravel Initial Tip

LIT intends to provide a solid foundation on top of Laravel to improve rapid development. It aims to include every tool that is always (or almost always) used when developing a standard web app. It is stable, but currently in the early stages of curation.

LIT includes:

HTML/CSS is based around Twitter Bootstrap (loaded by cdn)

JQuery 2.0.3 is also loaded by cdn

AngularJS 1.2.6 is also loaded by cdn, and controlled by /public/js/app.js

App.js tells angular to use alternative brackets, to prevent conflicts with the Blade templating engine

The /vendor/ folder has been removed from .gitignore to allow deploying without running $ composer install on the server. You can safely uncomment that line if you wish to prevent this behaviour.

Installation

  • git clone this repo down to your machine, then set up your own repo and do:
$ git remote rm origin
$ git remote add origin your_new_repo
  • $ composer update
  • Set up virtual host & hosts file, & restart Apache (if applicable).
  • Check /bootstrap/start.php to review environment settings. Change as required.
  • Create a database, & set up app/config/database.php. Also review app/config/mail.php, & app/config/app.php (specifically url & key). See also app/config/[local/staging/production].
  • $ php artisan migrate --env=mine --env is required due to the way we're setting enviroments
  • Start developing :)

Contributing To LIT

Contributions & forks are encouraged. The aim of LIT is to create a sturdy foundation for rapid development, without sacrificing production quality. Any feature that is always (or almost always) used in a web project could be added to LIT.

License

LIT is licensed as DBAD Don't be a dick

Laravel PHP Framework

Contributing To Laravel

All issues and pull requests should be filed on the laravel/framework repository.

License

The Laravel framework is open-sourced software licensed under the MIT license

About

Laravel Initial Tip


Languages

Language:PHP 99.5%Language:JavaScript 0.5%