https://github.com/reinskywalker/istqbright-laravel
A Laravel-based test application tailored for ISTQB (International Software Testing Qualifications Board) exam preparation, providing a user-friendly interface for practice
https://github.com/reinskywalker/istqbright-laravel
Last synced: about 1 year ago
JSON representation
A Laravel-based test application tailored for ISTQB (International Software Testing Qualifications Board) exam preparation, providing a user-friendly interface for practice
- Host: GitHub
- URL: https://github.com/reinskywalker/istqbright-laravel
- Owner: reinskywalker
- Created: 2024-01-18T05:45:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T05:56:19.000Z (about 2 years ago)
- Last Synced: 2025-04-09T19:55:45.831Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.24 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About Laravel
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
Laravel is accessible, powerful, and provides tools required for large, robust applications.
### Setting Up ISTQBright App
Follow these steps to set up application:
1. **Install Dependencies:**
```bash
composer install
2. **Setup Env File:**
```bash
cp .env.example .env
3. **Create SQL Database:**
Ensure you have a SQL database set up. Update the .env file with your database credentials.
5. **Run Migrations::**
```
php artisan migrate
6. **Seed Database (Optional):**
```bash
php artisan db:seed
7. **enerate Application Key:**
```bash
php artisan key:generate
8. **Start the Development Server:**
```bash
php artisan serve
