-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv
64 lines (52 loc) · 1.55 KB
/
env
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
61
62
63
64
# Application Environment
CI_ENVIRONMENT=development
# Application Configuration
app.baseURL=http://localhost:8000
app.indexPage=index.php
app.appTitle=MyApp
# Session Configuration
session.driver=CodeIgniter\Session\Handlers\RedisHandler
session.cookieName=myapp_session
session.expiration=3600
session.matchIP=true
session.timeToUpdate=600
session.regenerateDestroy=true
# Database Configuration
database.default.hostname=db_host
database.default.database=mydatabase
database.default.username=admin
database.default.password=password
database.default.DBDriver=MySQL
database.default.port=3306
# CORS Settings
cors.allowedHeaders=Content-Type, Authorization
cors.allowedOrigins=https://example.com
cors.allowedMethods=GET, POST, PUT
cors.credentials=false
# Email Configuration
email.fromName=MyApp Support
email.protocol=mail
email.SMTPHost=smtp.example.com
email.SMTPPass=securepassword
email.SMTPPort=587
email.SMTPCrypto=tls
email.mailType=text
# Authentication Settings
auth.autoLogin=false
auth.useMagicLinkFormTitle=Enter your email to receive a magic link.
auth.systemBotPassword=securebotpassword
# API Keys and Tokens
geocode_mapbox_api.key=pk.abcdefg123456
# Logging Settings
logger.threshold=1
# People Sync Configuration
people.remoteSyncUrl=https://api.example.com/sync
people.remoteSyncAccessToken=abcdef123456
# Data Providers
data_providers.news.url=https://news.example.com/api
# Elasticsearch Configuration
elasticSearch.host=search.example.com
# Cache Configuration
cache.disabled=false