File Structure
your-domain.tld
├── config/
│ └── database.php # Database configuration and setup
├── index.php # Landing page
├── create_family.php # Create new family group
├── join_family.php # Join existing family
├── login.php # User authentication
├── dashboard.php # Main family dashboard
├── manage_wishlist.php # Wishlist management
├── view_wishlist.php # View other family wishlists
├── family_settings.php # Family admin settings
├── invite_member.php # Invite new family members
├── logout.php # User logout
├── setup_database.php # Database setup script
├── install.php # Installation guide
└── README.md # This file
Last updated