Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 2.6 KB

README.md

File metadata and controls

59 lines (41 loc) · 2.6 KB

Laravel Logo

Build Status Total Downloads Latest Stable Version License

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:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Start this project

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

Stop this project

To stop the containers you can use the following command:

docker compose -f docker-compose.yml -f docker-compose.dev.yml down