Skip to content
This repository was archived by the owner on Apr 1, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adenvt/laravel-coreui-vue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.0
Choose a base ref
...
head repository: adenvt/laravel-coreui-vue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop
Choose a head ref
Loading
43 changes: 33 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -2,11 +2,18 @@

> Laravel + CoreUI + Vue Boilerplate
[![PHP version](https://badge.fury.io/ph/adenvt%2Flaravel-coreui-vue.svg)](https://badge.fury.io/ph/adenvt%2Flaravel-coreui-vue)
[![Build Status](https://travis-ci.com/adenvt/laravel-coreui-vue.svg?branch=master)](https://travis-ci.com/adenvt/laravel-coreui-vue) [![Greenkeeper badge](https://badges.greenkeeper.io/adenvt/laravel-coreui-vue.svg)](https://greenkeeper.io/)
![Packagist Version](https://img.shields.io/packagist/v/adenvt/laravel-coreui-vue.svg?color=brightgreen&label=version)
![Travis (.com)](https://img.shields.io/travis/com/adenvt/laravel-coreui-vue.svg)
![Travis (.com) branch](https://img.shields.io/travis/com/adenvt/laravel-coreui-vue/develop.svg?label=dev%20build)
[![Greenkeeper badge](https://badges.greenkeeper.io/adenvt/laravel-coreui-vue.svg)](https://greenkeeper.io/)
![Packagist](https://img.shields.io/packagist/dt/adenvt/laravel-coreui-vue.svg)
![David](https://img.shields.io/david/adenvt/laravel-coreui-vue.svg?logo=npm)
![David](https://img.shields.io/david/dev/adenvt/laravel-coreui-vue.svg?logo=npm)
![Packagist](https://img.shields.io/packagist/l/adenvt/laravel-coreui-vue.svg?color=blue)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fadenvt%2Flaravel-coreui-vue.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fadenvt%2Flaravel-coreui-vue?ref=badge_shield)

## What's inside
* [Laravel][laravel] 5.7, A PHP framework for web artisans
* [Laravel][laravel] 5.8, A PHP framework for web artisans
* [Core UI][coreui] for Vue, Free Bootstrap Admin Template
* Usefull library: [Axios][axios], [jQuery][jquery], [Moment.js][moment], [Lodash][lodash]
* [Vue Router][vue-router] and [Vuex][vuex], set out of the box
@@ -27,24 +34,23 @@
* JSON PHP Extension
* **Node** >= 8.9.4
* **NPM** >= 5.6.0
* For Ubuntu, require `apt-get install libpng16-dev`, [see](https://github.com/imagemin/imagemin-mozjpeg/issues/28)

## How to Install
* Install using composer (doesn't need to clone)
### via Composer
1. Create project using composer
```bash
composer create-project --prefer-dist adenvt/laravel-coreui-vue project_name
cd project_name
```
* Install Dependencies
2. Install Dependencies
```bash
cd project_name

npm install
```
* Add write permission (Unix)
3. Add write permission (Unix)
```bash
chmod -R go+w storage bootstrap/cache
```
* Compile Static Asset
4. Compile Static Asset
```bash
## for Development
npm run dev
@@ -56,6 +62,20 @@ npm run prod
npm run hot
```

### via Git
1. Clone this repo
```bash
git clone --depth=1 https://github.com/adenvt/laravel-coreui-vue.git project_name
cd project_name
rm -r .git
```
2. Install Dependencies
```
composer install
npm install
```
* Step 3 - 4 same as above

## Using Docker Compose

### For Development
@@ -114,3 +134,6 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
[offline-plugin]: https://github.com/NekR/offline-plugin
[workbox]: https://developers.google.com/web/tools/workbox/
[laravel-page-speed]: https://github.com/renatomarinho/laravel-page-speed


[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fadenvt%2Flaravel-coreui-vue.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fadenvt%2Flaravel-coreui-vue?ref=badge_large)
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"guzzlehttp/guzzle": "^6.3",
"laravel/framework": "5.7.*",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0",
"renatomarinho/laravel-page-speed": "^1.8"
},
Loading