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

Commit e20d7df

Browse files
committed
changed: package version, installation guide
1 parent 3d82dc3 commit e20d7df

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

README.md

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@
2929
* **NPM** >= 5.6.0
3030

3131
## How to Install
32-
* Install using composer (doesn't need to clone)
32+
### via Composer
33+
1. Create project using composer
3334
```bash
3435
composer create-project --prefer-dist adenvt/laravel-coreui-vue project_name
36+
cd project_name
3537
```
36-
* Install Dependencies
38+
2. Install Dependencies
3739
```bash
38-
cd project_name
39-
4040
npm install
4141
```
42-
* Add write permission (Unix)
42+
3. Add write permission (Unix)
4343
```bash
4444
chmod -R go+w storage bootstrap/cache
4545
```
46-
* Compile Static Asset
46+
4. Compile Static Asset
4747
```bash
4848
## for Development
4949
npm run dev
@@ -55,6 +55,20 @@ npm run prod
5555
npm run hot
5656
```
5757

58+
### via Git
59+
1. Clone this repo
60+
```bash
61+
git clone --depth=1 https://github.com/adenvt/laravel-coreui-vue.git project_name
62+
cd project_name
63+
rm -r .git
64+
```
65+
2. Install Dependencies
66+
```
67+
composer install
68+
npm install
69+
```
70+
* Step 3 - 4 same as above
71+
5872
## Using Docker Compose
5973

6074
### For Development

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"scripts": {
55
"dev": "npm run development",
66
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",

0 commit comments

Comments
 (0)