{"id":26472810,"url":"https://github.com/danisec/kinerjaplus","last_synced_at":"2026-03-10T04:31:29.964Z","repository":{"id":205465771,"uuid":"694963442","full_name":"danisec/kinerjaplus","owner":"danisec","description":"Application KinerjaPlus using Laravel 11 and algorithm Analytical Hierarchy Process","archived":false,"fork":false,"pushed_at":"2025-06-03T09:16:59.000Z","size":2609,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T15:43:54.965Z","etag":null,"topics":["ahp-algorithm","alpinejs","kinerjaplus","laravel","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danisec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-09-22T04:05:09.000Z","updated_at":"2025-06-03T09:17:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"ab5510aa-5b18-4317-998b-91f3fe730699","html_url":"https://github.com/danisec/kinerjaplus","commit_stats":null,"previous_names":["danisec/kinerja-ahp","danisec/kinerjaplus"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/danisec/kinerjaplus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisec%2Fkinerjaplus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisec%2Fkinerjaplus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisec%2Fkinerjaplus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisec%2Fkinerjaplus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danisec","download_url":"https://codeload.github.com/danisec/kinerjaplus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisec%2Fkinerjaplus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30324390,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T01:36:58.598Z","status":"online","status_checked_at":"2026-03-10T02:00:06.579Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ahp-algorithm","alpinejs","kinerjaplus","laravel","tailwindcss"],"created_at":"2025-03-19T21:49:52.771Z","updated_at":"2026-03-10T04:31:29.953Z","avatar_url":"https://github.com/danisec.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/danisec/assets/refs/heads/main/images/kinerjaplus/kinerjaplus.png\" width=\"auto\" height=\"auto\" alt=\"Laravel Logo\"\u003e\u003c/p\u003e\n\n# KinerjaPlus\n\nKinerjaPlus is a web application built using Laravel 10 for evaluating teacher performance. It leverages the Analytical Hierarchy Process (AHP) method combined with a 360-degree assessment that includes self-assessment, peer assessment, and supervisor assessment.\n\n## Table of Contents\n\n-   [Features](#features)\n-   [Requirements](#requirements)\n-   [Installation](#installation)\n-   [Usage](#usage)\n-   [User Manual Guide](#user-manual-guide)\n-   [Project Structure](#project-structure)\n-   [Contributing](#contributing)\n\n## Features\n\n-   **Analytical Hierarchy Process (AHP)**: Use AHP for structured and accurate performance evaluation.\n-   **360-Degree Feedback**: Incorporate feedback from self, peers, and supervisors to get a comprehensive assessment.\n-   **Ranking**: Principals or leaders can view information on ranking results starting from the priority weight of the criteria, the average employee score against the criteria, and the employee performance ranking.\n-   **Role-based Access Control**: Secure access with roles for admin, teachers, and principal or leader\n\n## Requirements\n\n-   PHP 8.1 or higher\n-   Composer\n-   Node.js and NPM\n-   MySQL\n-   Apache or Nginx\n\n## Installation\n\nFollow these steps to set up the project:\n\n1. Clone the repository:\n\n    ```bash\n    git clone https://github.com/danisec/kinerjaplus.git\n\n    cd kinerjaplus\n    ```\n\n2. Install dependencies:\n\n    ```bash\n    composer install\n\n    npm install \u0026\u0026 npm run build\n    ```\n\n3. Configure Environment Variables:\n\n    Copy the .env.example file and update it:\n\n    ```bash\n    cp .env.example .env\n    ```\n\n    Generate application key:\n\n    ```bash\n    php artisan key:generate\n    ```\n\n4. Set Up Database:\n\n-   Create a new MySQL database.\n-   Update .env with your database credentials:\n\n    ```bash\n    DB_CONNECTION=mysql\n    DB_HOST=127.0.0.1\n    DB_PORT=3306\n    DB_DATABASE=kinerja_plus\n    DB_USERNAME=dbusername\n    DB_PASSWORD=dbpassword\n    ```\n\n5. Run Database Migrations:\n\n    ```bash\n    php artisan migrate --seed\n\n    php artisan migrate --path=\"database/migrations/*\"\n    ```\n\n    Or, manually import the SQL file:\n\n    ```bash\n    mysql -u your_username -p your_password kinerja_plus \u003c database/sql/kinerja_plus.sql\n    ```\n\n6. Serve the application:\n\n    ```bash\n    php artisan serve\n    ```\n\n## Usage\n\n-   Access the application in your browser at `http://localhost:8000`.\n-   Login with the default credentials:\n    -   Superadmin:\n        -   Username: `superadmin`\n        -   Password: `superadmin12345`\n\n## User Manual Guide\n\n-   [User Manual Guide](https://drive.google.com/drive/folders/1SIqzttBP-SqOvaKbbH5hmjplKKYnaOyf?usp=drive_link)\n\n## Project Structure\n\n-   **app/Http/Controllers**: Contains the controllers for handling HTTP requests.\n-   **app/Models**: Holds the Eloquent models.\n-   **database/migrations**: Database migrations to set up the tables.\n-   **resources/views**: Blade templates for the frontend.\n-   **routes/web.php**: Defines web routes for the application.\n\n## Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork the repository.\n2. Create a feature branch: git checkout -b feature-name\n3. Commit changes: git commit -m \"feat: add new feature\"\n4. Push to branch: git push origin feature-name\n5. Submit a pull request.\n\nEnsure your code follows the project’s coding standards before submission.\n\n## License\n\nThis project is licensed under CC BY 4.0. See the [Creative Commons Attribution CC BY 4.0](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanisec%2Fkinerjaplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanisec%2Fkinerjaplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanisec%2Fkinerjaplus/lists"}