Development in progress
In development progress, any changes of table structure will be updated directly to corresponding migration file.
Genealogy (Silsilah) application to record our family members.
This application uses Bahasa Indonesia and English based on config.locale
.
- A person can have one father
- A person can have one mother
- A person can have one parent (couple of mother and father)
- A person can have 0 to many children
- A person can have 0 to many spouses (husbands or wife)
- A couple can have 0 to many children (based on parent_id)
- Enter Name and Gender
- Set Father
- Set Mother
- Add Spouse
- Add Child
- Nickname
- Gender
- Fullname
- Date of birth
- Date of death (or at least year of death)
- Address
- Phone Number
- Husband
- Wife
- Marriage Date
- Divorce Date
- Address
This application can be installed on local server and online server with these specifications :
- PHP 7.3 (and meet other Laravel 8.x server requirements),
- MySQL or MariaDB database,
- SQlite (for automated testing).
- Clone the repo :
git clone https://github.com/nafiesl/silsilah.git
cd silsilah
composer install
cp .env.example .env
php artisan key:generate
- Create database on MySQL
- Set database credentials on
.env
file php artisan migrate
php artisan storage:link
php artisan serve
- Register as new user to start using the application.
- Add the registered email address to the
.env
file:SYSTEM_ADMIN_EMAILS=admin@email.com;other_admin@email.com
This application built with testing (TDD) using in-memory sqlite database.
$ vendor/bin/phpunit
Feel free to submit Issue for bugs or sugestions and Pull Request.
This family tree view is using the Horizontal Family Tree CSS, thanks to Peiwen Lu.
Silsilah project is open-sourced software licensed under the MIT license.