-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
executable file
·44 lines (40 loc) · 1.36 KB
/
env.example
File metadata and controls
executable file
·44 lines (40 loc) · 1.36 KB
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
# ========================================
# Application Settings
# ========================================
APP_NAME=SysFramework
APP_ENV=local
APP_KEY=base64:YOUR_APP_KEY_HERE # Application secret key
APP_DEBUG=false # Enable or disable debug
APP_TIMEZONE=America/Sao_Paulo # Default timezone
APP_URL=http://localhost:8000 # Base URL of the application
APP_LOCALE=utf-8
BCRYPT_ROUNDS=12 # Number of rounds for bcrypt hashing
# ========================================
# Database Settings
# ========================================
DB_CONNECTION=mysql
DB_CHARSET=utf8mb4
DB_COLLATION=utf8mb4_general_ci
DB_PREFIX= # Table prefix (optional)
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=sysframework
DB_USERNAME=root
DB_PASSWORD=secret
# ========================================
# Email Settings
# ========================================
MAIL_TRANSPORT=smtp
MAIL_HOST=smtp.example.com
MAIL_PORT=587
MAIL_USERNAME=your_username
MAIL_PASSWORD=your_password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=no-reply@example.com
MAIL_FROM_NAME=SysFramework
MAILER_DSN=smtp://your_username:your_password@smtp.example.com:587
MAIL_URL=http://example.com
# ========================================
# Test Configuration
# ========================================
APP_TEST=test