Removed the echo statement from database.php to prevent exposing sensitive database information in the response.
Implemented dynamic loading of environment variables for better environment management.
File Management:
Updated .gitignore to exclude:
.env files to keep sensitive configuration secure.
.DS_Store files to prevent tracking of macOS system files.
Database Schema:
Exported the current database schema for testing in the live environment.
Purpose
These changes improve the security and organization of the project, ensuring sensitive data remains protected and unnecessary files are not included in version control.
Notes
Some issues with .htaccess I have two versions, one is commented out that is for the live server and the other that is not commented out is for the local server, have no idea how to deal with it but need to ask Kim or Soren
Database Handling:
database.php
to prevent exposing sensitive database information in the response.Implemented dynamic loading of environment variables for better environment management.
File Management:
.gitignore
to exclude:.env
files to keep sensitive configuration secure..DS_Store
files to prevent tracking of macOS system files.Purpose
These changes improve the security and organization of the project, ensuring sensitive data remains protected and unnecessary files are not included in version control.
Notes
Some issues with .htaccess I have two versions, one is commented out that is for the live server and the other that is not commented out is for the local server, have no idea how to deal with it but need to ask Kim or Soren