{"id":21418542,"url":"https://github.com/codenteq/laerx","last_synced_at":"2025-04-09T16:18:48.531Z","repository":{"id":37475948,"uuid":"492025578","full_name":"codenteq/laerx","owner":"codenteq","description":"An easy-to-use, free and open source laravel e-Exam platform to build your online course right away.","archived":false,"fork":false,"pushed_at":"2024-09-09T08:47:55.000Z","size":3744,"stargazers_count":128,"open_issues_count":1,"forks_count":22,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-09T16:18:20.537Z","etag":null,"topics":["acikkaynak","codenteq","e-exam","laravel","management","opensource","php"],"latest_commit_sha":null,"homepage":"https://laerx.codenteq.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codenteq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["codenteq"],"open_collective":"codenteq"}},"created_at":"2022-05-13T20:00:37.000Z","updated_at":"2025-01-08T11:42:32.000Z","dependencies_parsed_at":"2024-09-09T10:14:18.070Z","dependency_job_id":"7f1120b7-ffd9-468b-be8d-ea08d2d8a940","html_url":"https://github.com/codenteq/laerx","commit_stats":{"total_commits":300,"total_committers":6,"mean_commits":50.0,"dds":0.2533333333333333,"last_synced_commit":"5db4bc861f9776ba4be60211e326956989f4710b"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codenteq%2Flaerx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codenteq%2Flaerx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codenteq%2Flaerx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codenteq%2Flaerx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codenteq","download_url":"https://codeload.github.com/codenteq/laerx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248065281,"owners_count":21041872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["acikkaynak","codenteq","e-exam","laravel","management","opensource","php"],"created_at":"2024-11-22T19:22:14.150Z","updated_at":"2025-04-09T16:18:48.510Z","avatar_url":"https://github.com/codenteq.png","language":"PHP","readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://codenteq.com/wp-content/uploads/2022/12/laerx-default.webp\" width=\"250\" alt=\"Laerx Course Management Logo\" /\u003e\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eLaerx Course Management\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://packagist.org/packages/codenteq/laerx\"\u003e\u003cimg src=\"https://poser.pugx.org/codenteq/laerx/v/stable.svg\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/codenteq/laerx/blob/master/LICENSE\"\u003e\u003cimg src=\"https://poser.pugx.org/codenteq/laerx/license.svg\" alt=\"License\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://packagist.org/packages/codenteq/laerx\"\u003e\u003cimg src=\"https://poser.pugx.org/codenteq/laerx/d/total.svg\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nLaerx is a course management system provided by [Codenteq](https://github.com/codenteq) to create a consistent driver license for app users.\n\nGet detailed information about your clients, exams and courses to create an effective report and track your progress. You can also use audio lessons, online quizzes, and the tool/teacher appointment system.\n\n## Getting Started\n\nFirst, install the package:\n\n```bash\ncomposer create-project codenteq/laerx\n```\n\n### Docker Installation\n\nRun the following command\n```bash\ndocker run --rm \\\n  -u \"$(id -u):$(id -g)\" \\\n  -v $(pwd):/var/www/html \\\n  -w /var/www/html \\\n  laravelsail/php81-composer:latest \\\n  composer install --ignore-platform-reqs\n```\n\n```bash\n./vendor/sail/bin artisan storage link\n```\n\nConfigure the database connection is going to be using in `.env`\n\n```bash\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=laerx\nDB_USERNAME=sail\nDB_PASSWORD=password\n```\n\n```bash\n./vendor/bin/sail artisan migrate --seed\n```\n\n### Composer Installation\n\nRun the following command\n\n```bash\ncomposer install\n```\n\n```bash\nphp artisan storage:link\n```\n\nConfigure the database connection is going to be using in `.env`\n\n```bash\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=laerx\nDB_USERNAME=root\nDB_PASSWORD=\n```\n\n```bash\nphp artisan migrate --seed\n```\n\n## How to contribute\nLaerx Course Management is always open for direct contributions. Contributions can be in the form of design suggestions, documentation improvements, new component suggestions, code improvements, adding new features or fixing problems. For more information please check our [Contribution Guideline document.](https://github.com/codenteq/laerx/blob/master/CONTRIBUTING.md)\n\n## Useful Links\n\n* [Open Laerx](https://laerx.codenteq.com/)\n","funding_links":["https://github.com/sponsors/codenteq","https://opencollective.com/codenteq"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodenteq%2Flaerx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodenteq%2Flaerx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodenteq%2Flaerx/lists"}