Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codenteq/laerx
An easy-to-use, free and open source laravel e-Exam platform to build your online course right away.
https://github.com/codenteq/laerx
acikkaynak codenteq e-exam laravel management opensource php
Last synced: 5 days ago
JSON representation
An easy-to-use, free and open source laravel e-Exam platform to build your online course right away.
- Host: GitHub
- URL: https://github.com/codenteq/laerx
- Owner: codenteq
- License: mit
- Created: 2022-05-13T20:00:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T08:47:55.000Z (4 months ago)
- Last Synced: 2024-12-27T20:07:27.540Z (12 days ago)
- Topics: acikkaynak, codenteq, e-exam, laravel, management, opensource, php
- Language: PHP
- Homepage: https://laerx.codenteq.com
- Size: 3.57 MB
- Stars: 129
- Watchers: 8
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
Laerx Course Management
Laerx is a course management system provided by [Codenteq](https://github.com/codenteq) to create a consistent driver license for app users.
Get 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.
## Getting Started
First, install the package:
```bash
composer create-project codenteq/laerx
```### Docker Installation
Run the following command
```bash
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
``````bash
./vendor/sail/bin artisan storage link
```Configure the database connection is going to be using in `.env`
```bash
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laerx
DB_USERNAME=sail
DB_PASSWORD=password
``````bash
./vendor/bin/sail artisan migrate --seed
```### Composer Installation
Run the following command
```bash
composer install
``````bash
php artisan storage:link
```Configure the database connection is going to be using in `.env`
```bash
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laerx
DB_USERNAME=root
DB_PASSWORD=
``````bash
php artisan migrate --seed
```## How to contribute
Laerx 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)## Useful Links
* [Open Laerx](https://laerx.codenteq.com/)