-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd9a3f7
commit 226b448
Showing
1 changed file
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# laravel | ||
Laravel Template | ||
# Acid Studios Laravel Template | ||
This repository contains a template used in [Acid Studios](http://www.acidstudios.me) to create Rest API's for our php projects. | ||
|
||
To start using this template, clone the repository; | ||
```bash | ||
git clone https://github.com/acidstudios/laravel.git | ||
composer install | ||
``` | ||
|
||
Or create a new project using composer: | ||
To start using this template, clone the repository; | ||
```bash | ||
composer create-project --prefer-dist acidstudios/laravel | ||
``` | ||
It will install all dependencies used in the template. | ||
|
||
Then, run this command: | ||
To start using this template, clone the repository; | ||
```bash | ||
php artisan api:install | ||
``` | ||
This command will run all existing migrations and seeders. | ||
|
||
You can start develop your project from now, don't forget to setup your .env file and your [Sentry.io](http://www.sentry.io) API Key. |