Shamsuddeen Omacy
Shamsuddeen Omacy
Encountered the same issue using PHP 7.4
[laravel:warn] Your app configuration references the SQS_SUFFIX environment variable, but it is not set. Please any solution to these errors?
The issue here is that, no where in my code where I used any of those Variables. I am concerned why is it throwing it those errors? As such my...
I was able to resolve it by using Dockerfile for my deployments
I was able to solve mine by switching to deploy using Dockerfile. Here is a sample deployment file ``` FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm install COPY...