-
Notifications
You must be signed in to change notification settings - Fork 18
/
.env.example
42 lines (36 loc) · 1.09 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Debug mode.
#
# Get internal messages during running the application.
DEBUG=false
# Debug log.
#
# Use when DEBUG is enabled.
# By default, debug messages go to the console.
DEBUG_LOG=php://stdout
# Application theme.
#
# Available themes: auto, clam, alt, default, classic.
# For Windows: winnative, xpnative, vista.
# When theme is not specified 'auto' will be used.
# The 'auto' option sets a theme depending on OS. For Linux, it will be 'clam',
# for Windows - 'vista'.
THEME=auto
# Tcl/Tk C header files.
#
# These are FFI headers not original ones from the Tcl/Tk source distribution.
# Normally headers are in `src/headers` directory but you can
# override to yours.
# TCL_HEADER=tcl86.h
# TK_HEADER=tk86.h
# Windows Tcl/Tk shared libs (dll).
#
# Set full path where Tcl/Tk binary libs are located or Tcl installed
# otherwise libs from %SYSTEM% path will be used.
WINDOWS_LIB_TCL=tcl86t.dll
WINDOWS_LIB_TK=tk86t.dll
# Linux Tcl/Tk shared libs (.so).
LINUX_LIB_TCL=libtcl8.6.so
LINUX_LIB_TK=libtk8.6.so
# Darwin Tcl/Tk shared libs (.dylib).
DARWIN_LIB_TCL=libtcl8.6.dylib
DARWIN_LIB_TK=libtk8.6.dylib