Files
vuefilemanager/README.md
carodej 2eaf399441 Merge branch 'dev'
* dev:
  v1.5-beta.3
  v1.5-beta.2
  v1.5-beta.1
  v1.5-alpha.11
  v1.5-alpha.10
  v1.5-alpha.9
  v1.5-alpha.8
  v1.5-alpha.7
  v1.5-alpha.6
  v1.5-alpha.5
  v1.5-alpha.4
  v1.5-alpha.3
  v1.5-alpha.2
  v1.5-alpha.1
2020-05-19 17:52:07 +02:00

53 lines
1.3 KiB
Markdown

### Documentation
[Read online documentation](https://vuefilemanager.com/docs/)
### Demo & dev preview links
* For visit demo version click here [demo.vuefilemanager.com](https://demo.vuefilemanager.com/)
* For visit dev version click here [dev.vuefilemanager.com](https://dev.vuefilemanager.com/) (It's auto deployed dev branch. Can be unstable and not ready for production)
### Installation setup
Run these commands to install vendors:
```
composer install
```
```
npm install
```
Setup your database in .env and run this command:
```
php artisan setup:prod
```
It automatically:
* Migrate database
* Generate Application key
* Create Passport Encryption keys
* Create Password grant client
* Create Personal access client
Then, copy generated password grant client `Client ID`, `Client secret` and paste it to .env files here:
```
PASSPORT_CLIENT_ID=<your_passport_client_id>
PASSPORT_CLIENT_SECRET=<your_passport_client_secret>
```
For sending forgoten password request via email, fill your mail driver in .env
### Run Application
To start server on your localhost, run this command
```
php artisan serve
```
To compiles and hot-reloads for development, run this command
```
npm run hot
```
To compiles for production, run this command
```
npm run prod
```
That's all, happy coding! :tada: :tada: :tada: