-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
.env.testing
60 lines (54 loc) · 1.34 KB
/
.env.testing
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Asatru PHP - App environment configuration file
#
# Scheme:
# name=value
# Example
# APP_NAME="My App name"
# Datatypes:
# string, integer, float, boolean and null (auto detected)
# App settings
APP_NAME="Asatru PHP"
APP_VERSION=1.0
APP_AUTHOR="Daniel Brendel"
APP_CONTACT="[email protected]"
APP_DEBUG=true
APP_BASEDIR=""
APP_TIMEZONE=null
APP_URL="http://localhost:8000"
APP_GITHUB_URL="https://github.com/danielbrendel/hortusfox-web"
APP_SERVICE_URL="https://www.hortusfox.com"
APP_GITHUB_SPONSOR="https://github.com/sponsors/danielbrendel"
APP_DONATION_KOFI="https://ko-fi.com/danielbrendel"
APP_SOCIAL_DISCORD="https://discord.gg/kc6xGmjzVS"
APP_SOCIAL_MASTODON="https://mastodon.social/@hortusfox"
APP_SOCIAL_YOUTUBE="https://www.youtube.com/@HortusFox"
# Session
SESSION_ENABLE=true
SESSION_DURATION=32532000
SESSION_NAME=null
# Photo resize factors
PHOTO_RESIZE_FACTOR_DEFAULT=1.0
PHOTO_RESIZE_FACTOR_1=0.5
PHOTO_RESIZE_FACTOR_2=0.4
PHOTO_RESIZE_FACTOR_3=0.4
PHOTO_RESIZE_FACTOR_4=0.3
PHOTO_RESIZE_FACTOR_5=0.2
# Database settings
DB_ENABLE=true
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=""
DB_PORT=3306
DB_DATABASE=hortusfox
DB_DRIVER=mysql
DB_CHARSET="utf8mb4"
# SMTP settings
SMTP_FROMNAME="Test"
SMTP_FROMADDRESS="[email protected]"
SMTP_HOST=""
SMTP_PORT=587
SMTP_USERNAME=""
SMTP_PASSWORD=""
SMTP_ENCRYPTION=tls
# Logging
LOG_ENABLE=true