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.
- Host: GitHub
- URL: https://github.com/phizaz/test-restful
- Owner: phizaz
- Created: 2014-07-19T07:25:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-20T01:40:12.000Z (over 11 years ago)
- Last Synced: 2025-02-03T17:03:46.205Z (11 months ago)
- Language: PHP
- Size: 168 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
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.