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.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, powerful, and provides tools required for large, robust applications.
To start this project you need to create your environment file first:
cp .env.example .env
You need to have docker installed.
To run the containers you can use the following command:
docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d
This will start traefik and the php container.
Now you can access the application on http://localhost
The test route for accessing redis cursors is available at http://localhost/test For this to work you need to add the following environment variables to your .env file with the correct values:
EXTERNAL_REDIS_URL
EXTERNAL_REDIS_HOST
EXTERNAL_REDIS_AUTH_TOKEN
To stop the containers you can use the following command:
docker compose -f docker-compose.yml -f docker-compose.dev.yml down