An open API service indexing awesome lists of open source software.

https://github.com/phizaz/test-restful

example application of angular + laravel in RESTful style.
https://github.com/phizaz/test-restful

Last synced: 9 months ago
JSON representation

example application of angular + laravel in RESTful style.

Awesome Lists containing this project

README

          

### How to install
First, Install Laravel web framework by enter this command
```
composer install
```
Note that you need composer in order to install this.

Second, Install front-end frameworks and components such as AngularJS, JQuery,
Bootstrap, MomentJS, Underscore by enter this command
```
bower install
```
Since it uses Bower to manage the front-end components, you also need to
install Bower in advance.

Third, Install the grunt helpers in order to develop smoothly by enter this command
```
npm install
```
Since grunt is powered by NodeJS, you need to install NodeJS in advance
to use the NPM.

Fourth, You can find the SQL file inside this package.

Fifth, After imported the SQL file into your preferred database, you may need to
tell Laravel what is the database name, database username, and so on..
to do that copy file app/config/database_original.php to
app/config/database.php, and provide it your information.

Sixth, You're now good to go.