mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 09:44:04 +01:00
Set IsDemoApp option as an .ENV variable
This commit is contained in:
parent
88b029bed4
commit
6cdf4cf207
@ -32,6 +32,12 @@ APP_KEY=SomeRandomStringOf32CharsExactly
|
||||
APP_URL=http://localhost
|
||||
|
||||
|
||||
# Turn this to true if you want your app to react like a demo.
|
||||
# The Demo mode reset the app content every hours and set a generic demo user.
|
||||
|
||||
IS_DEMO_APP=false
|
||||
|
||||
|
||||
# The log channel defines where your log entries go to.
|
||||
# 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/.
|
||||
# Several other options exist. You can use 'single' for one big fat error log (not recommended).
|
||||
|
@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
'options' => [
|
||||
'isDemoApp' => false,
|
||||
'isDemoApp' => env('IS_DEMO_APP', false),
|
||||
'showTokenAsDot' => false,
|
||||
],
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user