update dependencies
parent
463d02f22f
commit
c42dbc7a86
|
|
@ -11,8 +11,8 @@ DB_CONNECTION=mysql
|
||||||
DB_HOST=mysql
|
DB_HOST=mysql
|
||||||
DB_PORT=3306
|
DB_PORT=3306
|
||||||
DB_DATABASE=automngr
|
DB_DATABASE=automngr
|
||||||
DB_USERNAME=sail
|
DB_USERNAME="sail"
|
||||||
DB_PASSWORD=password
|
DB_PASSWORD="password"
|
||||||
|
|
||||||
BROADCAST_DRIVER=log
|
BROADCAST_DRIVER=log
|
||||||
CACHE_DRIVER=file
|
CACHE_DRIVER=file
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,16 @@ Running on Laravel 8
|
||||||
|
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
- [Docker](https://docker.com) installed and running
|
- [Docker](https://docker.com) installed and running
|
||||||
|
- Docker compose installed
|
||||||
|
- Composer installed
|
||||||
|
- PHP installed
|
||||||
|
|
||||||
Steps:
|
Steps:
|
||||||
1. copy .env.example to .env
|
1. copy .env.example to .env
|
||||||
|
2. add user credentials in .env
|
||||||
|
2. run `composer update --ignore-platform-reqs`
|
||||||
|
3. run `composer install --ignore-platform-reqs`
|
||||||
|
1. run `./vendor/bin/sail php artisan key:generate`
|
||||||
2. start app by running `./vendor/bin/sail up` inside the main directory (or configure a bash alias: `alias sail='bash vendor/bin/sail'`) then you can use `sail up`
|
2. start app by running `./vendor/bin/sail up` inside the main directory (or configure a bash alias: `alias sail='bash vendor/bin/sail'`) then you can use `sail up`
|
||||||
3. Run migrations and seed db: `sail php artisan migrate:fresh --seed`
|
3. Run migrations and seed db: `sail php artisan migrate:fresh --seed`
|
||||||
4. `sail npm run watch`
|
4. `sail npm run watch`
|
||||||
|
|
|
||||||
|
|
@ -8,10 +8,10 @@
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^7.3|^8.1",
|
"php": "^8.1",
|
||||||
"barryvdh/laravel-dompdf": "^1.0",
|
"barryvdh/laravel-dompdf": "^1.0",
|
||||||
"bensampo/laravel-enum": "^5.1",
|
"bensampo/laravel-enum": "^5.1",
|
||||||
"cknow/laravel-money": "^6.1",
|
"cknow/laravel-money": "^6.4",
|
||||||
"fakerphp/faker": "^1.9.1",
|
"fakerphp/faker": "^1.9.1",
|
||||||
"fruitcake/laravel-cors": "^2.0",
|
"fruitcake/laravel-cors": "^2.0",
|
||||||
"guzzlehttp/guzzle": "^7.0.1",
|
"guzzlehttp/guzzle": "^7.0.1",
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -19,7 +19,7 @@
|
||||||
"@vue/compiler-sfc": "^3.0.5",
|
"@vue/compiler-sfc": "^3.0.5",
|
||||||
"eslint": "^7.28.0",
|
"eslint": "^7.28.0",
|
||||||
"eslint-plugin-vue": "^7.11.1",
|
"eslint-plugin-vue": "^7.11.1",
|
||||||
"laravel-mix": "^6.0.6",
|
"laravel-mix": "^6.0.49",
|
||||||
"postcss": "^8.1.14",
|
"postcss": "^8.1.14",
|
||||||
"postcss-import": "^14.0.2",
|
"postcss-import": "^14.0.2",
|
||||||
"tailwindcss": "^2.0.1",
|
"tailwindcss": "^2.0.1",
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
"vue": "^3.0.5",
|
"vue": "^3.0.5",
|
||||||
"vue-currency-input": "^2.0.0",
|
"vue-currency-input": "^2.0.0",
|
||||||
"vue-multiselect": "^3.0.0-alpha.2",
|
"vue-multiselect": "^3.0.0-alpha.2",
|
||||||
"vue-unicons": "^2.1.0",
|
"vue-unicons": "^3.3.1",
|
||||||
"vuex": "^4.0.0"
|
"vuex": "^4.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue