mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
Updated readme
This commit is contained in:
27
README.md
27
README.md
@@ -24,8 +24,8 @@ But, it can't be done without you, development is more and more complicated and
|
|||||||
- [Get your active plans](#get-your-active-plans)
|
- [Get your active plans](#get-your-active-plans)
|
||||||
- [Manage Failed Payments](#manage-failed-payments)
|
- [Manage Failed Payments](#manage-failed-payments)
|
||||||
- [Tax Rates](#tax-rates)
|
- [Tax Rates](#tax-rates)
|
||||||
- [Technical Informations](#technical-informations)
|
- [Developers](#developers)
|
||||||
- [For Developers](#for-developers)
|
- [Running development environment on your localhost](#running-development-environment-on-your-localhost)
|
||||||
- [Supported Storages](#supported-storages)
|
- [Supported Storages](#supported-storages)
|
||||||
- [How to Create New Language](#how-to-create-new-language)
|
- [How to Create New Language](#how-to-create-new-language)
|
||||||
- [Others](#others)
|
- [Others](#others)
|
||||||
@@ -68,6 +68,11 @@ Then change your **public directory** for your domain. It should be changed to /
|
|||||||
|
|
||||||
Make sure `.env` file was uploaded. This type of file can be hidden in default.
|
Make sure `.env` file was uploaded. This type of file can be hidden in default.
|
||||||
|
|
||||||
|
When you download repository from GitHub, you have to rename your `.env.example` file to `.env`. Then run command below in your terminal to install vendors. Composer is required.
|
||||||
|
```
|
||||||
|
composer install
|
||||||
|
```
|
||||||
|
|
||||||
Set `755` permission (CHMOD) to these file and folders directory within all children subdirectories:
|
Set `755` permission (CHMOD) to these file and folders directory within all children subdirectories:
|
||||||
|
|
||||||
- /bootstrap/cache
|
- /bootstrap/cache
|
||||||
@@ -197,16 +202,15 @@ You are able to manage tax rates. When adding a new tax rate, if no Region is sp
|
|||||||
|
|
||||||
Just log in to your stripe dashboard, and you will find taxes under `Dashboard / Products / Tax Rates`.
|
Just log in to your stripe dashboard, and you will find taxes under `Dashboard / Products / Tax Rates`.
|
||||||
|
|
||||||
# Technical Informations
|
# Developers
|
||||||
## For Developers
|
## Running development environment on your localhost
|
||||||
Installation process on your localhost is the same. But, there are some good hints.
|
|
||||||
|
|
||||||
When you download repository from GitHub, you have to rename your `.env.example` file to `.env`. Then run this command in your terminal to install vendors:
|
When you download repository from GitHub, you have to rename your `.env.example` file to `.env`. Then run command below in your terminal to install vendors. Composer is required.
|
||||||
```
|
```
|
||||||
composer install
|
composer install
|
||||||
```
|
```
|
||||||
|
|
||||||
After successfully installation with setup wizard, you have to set your `APP_ENV` to local mode, in default, it's in production mode.
|
Set your `APP_ENV` to local mode, in default, it's in production mode.
|
||||||
```
|
```
|
||||||
APP_ENV=local
|
APP_ENV=local
|
||||||
```
|
```
|
||||||
@@ -216,21 +220,22 @@ Also, to debug application, set `APP_DEBUG` on true:
|
|||||||
APP_DEBUG=true
|
APP_DEBUG=true
|
||||||
```
|
```
|
||||||
|
|
||||||
To start server on your localhost, run this command
|
To start server on your localhost, run command below. Then go to your generated localhost URL by terminal, and follow Setup Wizard steps to configure VueFileManager.
|
||||||
```
|
```
|
||||||
php artisan serve
|
php artisan serve
|
||||||
```
|
```
|
||||||
To develop your front-end, you have to install npm modules by this command:
|
|
||||||
|
To develop your Vue front-end, you have to install npm modules by this command:
|
||||||
```
|
```
|
||||||
npm install
|
npm install
|
||||||
```
|
```
|
||||||
|
|
||||||
To compiles and hot-reloads for development. Then run this command:
|
To compiles and hot-reloads for front-end development. Then run this command:
|
||||||
```
|
```
|
||||||
npm run hot
|
npm run hot
|
||||||
```
|
```
|
||||||
|
|
||||||
To compiles for production, run this command
|
To compiles for production build, run this command
|
||||||
```
|
```
|
||||||
npm run prod
|
npm run prod
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user