diff --git a/.env-example b/.env-example index 25219a5..c5619a7 100644 --- a/.env-example +++ b/.env-example @@ -14,6 +14,13 @@ App_REDIRECT_HTTP_TO_HTTPS=false App_CERT_FILE_PATH=tls/server.crt App_KEY_FILE_PATH=tls/server.key +####################################### +###### TEMPLATES ###### +####################################### +TEMPLATE_ENABLE=true +TEMPLATE_PUBLIC=storage/public +TEMPLATE_COMPONENTS=true + ####################################### ###### JWT ###### ####################################### diff --git a/config/gorm.go b/config/gorm.go index 9a3e888..880271f 100644 --- a/config/gorm.go +++ b/config/gorm.go @@ -16,6 +16,6 @@ func GetGormConfig() core.GormConfig { return core.GormConfig{ // For enabling and disabling the GORM // set to true to enable it, set to false to disable - EnableGorm: false, + EnableGorm: true, } }