-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (32 loc) · 742 Bytes
/
Copy path.env.example
File metadata and controls
40 lines (32 loc) · 742 Bytes
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
# FILE: /.env.example
# SplashUTM Environment Configuration
# Copy this file to .env and configure your settings
# Application
APP_NAME=SplashUTM
APP_ENV=production
APP_URL=http://localhost
APP_DEBUG=false
# Database
DB_HOST=localhost
DB_PORT=3306
DB_NAME=splashutm
DB_USER=root
DB_PASS=
# Session
SESSION_LIFETIME=7200
# Short URL Domain (used in API responses)
SHORT_DOMAIN=http://localhost
# Security
# Generate a random 32-character key for production
APP_KEY=your-32-character-random-key-here
# Timezone
APP_TIMEZONE=UTC
# Email (for password reset - not implemented in demo)
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USER=
MAIL_PASS=
MAIL_FROM=noreply@splashutm.test
# Logging
LOG_LEVEL=error
LOG_FILE=storage/logs/app.log