mirror of
https://github.com/filegator/filegator.git
synced 2025-08-06 18:56:56 +02:00
docs menu
This commit is contained in:
@@ -66,6 +66,6 @@ menu:
|
|||||||
multilang:
|
multilang:
|
||||||
name: Languages
|
name: Languages
|
||||||
items:
|
items:
|
||||||
english:
|
default:
|
||||||
text: Translations
|
text: Translations
|
||||||
relativeUrl: translations/default.html
|
relativeUrl: translations/default.html
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
currentMenu: account
|
||||||
|
---
|
||||||
|
|
||||||
## User roles
|
## User roles
|
||||||
|
|
||||||
There are 3 different user roles:
|
There are 3 different user roles:
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
currentMenu: auth
|
||||||
|
---
|
||||||
|
|
||||||
## Default Auth service
|
## Default Auth service
|
||||||
By default, users are stored in json file. For some use-cases, this is enough. It also makes this app lightweight since no database is required.
|
By default, users are stored in json file. For some use-cases, this is enough. It also makes this app lightweight since no database is required.
|
||||||
|
|
||||||
|
@@ -1,3 +1,6 @@
|
|||||||
|
---
|
||||||
|
currentMenu: basic
|
||||||
|
---
|
||||||
|
|
||||||
## Basic
|
## Basic
|
||||||
All services are set with reasonable defaults. For regular users there is no need to change anything. The script should work out of the box.
|
All services are set with reasonable defaults. For regular users there is no need to change anything. The script should work out of the box.
|
||||||
|
@@ -1,3 +1,6 @@
|
|||||||
|
---
|
||||||
|
currentMenu: logging
|
||||||
|
---
|
||||||
|
|
||||||
## Configuring Logging service
|
## Configuring Logging service
|
||||||
|
|
||||||
@@ -21,4 +24,4 @@ Default handler will use simple ```/private/logs/app.log``` file to store applic
|
|||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|
||||||
There are many different handlers you can add ot top of the stack (monolog_handlers array). Some of them are listed [here](https://github.com/Seldaek/monolog#documentation).
|
There are many different handlers you can add on top of the stack (monolog_handlers array). Some of them are listed [here](https://github.com/Seldaek/monolog#documentation).
|
||||||
|
@@ -1,3 +1,6 @@
|
|||||||
|
---
|
||||||
|
currentMenu: router
|
||||||
|
---
|
||||||
|
|
||||||
## Router service
|
## Router service
|
||||||
|
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
currentMenu: security
|
||||||
|
---
|
||||||
|
|
||||||
## Configuring Security service
|
## Configuring Security service
|
||||||
|
|
||||||
Simple security service is included in the script by default. This service provides:
|
Simple security service is included in the script by default. This service provides:
|
||||||
|
@@ -1,3 +1,6 @@
|
|||||||
|
---
|
||||||
|
currentMenu: sessions
|
||||||
|
---
|
||||||
|
|
||||||
## Default Session handler
|
## Default Session handler
|
||||||
|
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
currentMenu: storage
|
||||||
|
---
|
||||||
|
|
||||||
## Adapters
|
## Adapters
|
||||||
Different storage adapters are provided through the awesome [Flysystem](https://github.com/thephpleague/flysystem) library.
|
Different storage adapters are provided through the awesome [Flysystem](https://github.com/thephpleague/flysystem) library.
|
||||||
|
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
currentMenu: demo
|
||||||
|
---
|
||||||
|
|
||||||
## Demo
|
## Demo
|
||||||
[https://demo.filegator.io](https://demo.filegator.io)
|
[https://demo.filegator.io](https://demo.filegator.io)
|
||||||
|
|
||||||
|
@@ -1,3 +1,6 @@
|
|||||||
|
---
|
||||||
|
currentMenu: development
|
||||||
|
---
|
||||||
|
|
||||||
## Project setup for development (Linux)
|
## Project setup for development (Linux)
|
||||||
|
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
## FileGator
|
## FileGator
|
||||||
<a href="https://travis-ci.org/filegator/filegator"><img src="https://travis-ci.org/filegator/filegator.svg?branch=master" alt="Build Status"></a>
|
<a href="https://travis-ci.org/filegator/filegator"><img src="https://travis-ci.org/filegator/filegator.svg?branch=master" alt="Build Status"></a>
|
||||||
<a href="https://codecov.io/gh/filegator/filegator"><img src="https://codecov.io/gh/filegator/filegator/branch/master/graph/badge.svg" alt="Code Coverage"></a>
|
<a href="https://codecov.io/gh/filegator/filegator"><img src="https://codecov.io/gh/filegator/filegator/branch/master/graph/badge.svg" alt="Code Coverage"></a>
|
||||||
|
@@ -1,3 +1,6 @@
|
|||||||
|
---
|
||||||
|
currentMenu: install
|
||||||
|
---
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
- PHP 7.1.3+
|
- PHP 7.1.3+
|
||||||
|
4
docs/template/css/main.css
vendored
4
docs/template/css/main.css
vendored
@@ -49,6 +49,10 @@ header.navbar {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
|
||||||
|
background-color: #34b891;
|
||||||
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
#sidebar {
|
#sidebar {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
currentMenu: default
|
||||||
|
---
|
||||||
|
|
||||||
## Translations
|
## Translations
|
||||||
|
|
||||||
Default language file is located under ```/frontend/translations/english.js```. You can add more languages in the same folder and adjust ```language``` variable in your ```configuration.php``` file to use it.
|
Default language file is located under ```/frontend/translations/english.js```. You can add more languages in the same folder and adjust ```language``` variable in your ```configuration.php``` file to use it.
|
||||||
|
Reference in New Issue
Block a user