-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
26 lines (23 loc) · 1.05 KB
/
Copy path.env.example
File metadata and controls
26 lines (23 loc) · 1.05 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
#--------------------------------------------------------------------
# ENVIRONMENT
# Ubah ke 'production' saat deploy ke hosting
#--------------------------------------------------------------------
CI_ENVIRONMENT = production
#--------------------------------------------------------------------
# APP URL
# Sesuaikan dengan URL instalasi Anda (TAMBAHKAN PORT JIKA BUKAN PORT 80)
# Contoh lokal default : http://localhost/koperasi/public/
# Contoh lokal custom : http://localhost:8088/koperasi/public/
# Contoh hosting : https://namadomain.com/
#--------------------------------------------------------------------
app.baseURL = 'http://localhost/koperasi/public/'
#--------------------------------------------------------------------
# DATABASE
# Isi sesuai konfigurasi MySQL Anda
#--------------------------------------------------------------------
database.default.hostname = localhost
database.default.database = koperasi_db
database.default.username = root
database.default.password = ''
database.default.DBDriver = MySQLi
database.default.port = 3306