mirror of
https://github.com/xodivorce/infra-xodivorce-in.git
synced 2026-02-04 19:02:21 +05:30
fix: resolve some bugs, architecture
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
#This is an example of secret environmental variables
|
||||
#original environmental variable should be created with .env filename
|
||||
|
||||
DOMAIN = "Your Domain Name Here"
|
||||
DEBUG_MODE = "false" # Set to "false" in production
|
||||
BETA = "true" #Is this in the beta version? or not.
|
||||
DEBUG_MODE = "false" # Set to falsein production
|
||||
DB_HOST = "Your Database Host Name Here"
|
||||
DB_USER = "Your Database Username Here"
|
||||
DB_PASS = "Your Database Password Here"
|
||||
@@ -19,7 +17,7 @@ MAIL_TO = "Your Mail To Address Here"
|
||||
MAX_VISIBLE_CONTRIBUTORS = "Your Maximum Visible Contributors Here. Use: 11(default)"
|
||||
PROJECT_START_YEAR = "Your Project Start Year Here. Use: 2025(default)"
|
||||
|
||||
|
||||
# Contact Information of various departments
|
||||
HELPDESK_EMAIL= "Your Helpdesk Email Here"
|
||||
HELPDESK_PHONE= "Your Helpdesk Phone Here"
|
||||
MANAGEMENT_EMAIL= "Your Management Email Here"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require __DIR__ . './../core/vendor/autoload.php';
|
||||
require dirname(__DIR__) . '/core/vendor/autoload.php';
|
||||
|
||||
use Dotenv\Dotenv;
|
||||
$dotenv = Dotenv::createImmutable(dirname(__DIR__));
|
||||
|
||||
Reference in New Issue
Block a user