This project provide a lot of tools that can help you while creating a code challenge webstite!
- Laravel
- Docker
- Postgresql or any sql engine
cp .env.example .env
If you want to use a temporal postgresql db, you can use docker compose in order to mount a special db for the project and avoid using local db
sudo systemctl stop postgresql
docker-compose up -d
Docker is required no matter wheter you use docker compose for your database, it will be used within the project to run the code that client side sends.
DB_CONNECTION=
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_SCHEMA=
DB_USERNAME=
DB_PASSWORD=