This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
import os | |
# Supply your AWS credentials and region here | |
aws_access_key_id = 'YOUR_AWS_ACCESS_KEY_ID' | |
aws_secret_access_key = 'YOUR_AWS_SECRET_ACCESS_KEY' | |
region_name = 'YOUR_AWS_REGION' | |
bucket_name = 'YOUR_S3_BUCKET_NAME' | |
local_filename = 'mahesh.txt' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:8.2-cli | |
# Install required packages | |
RUN apt-get update && apt-get install -y \ | |
git unzip curl | |
# Install Composer | |
RUN curl -sS https://getcomposer.org/installer | php -- \ | |
--install-dir=/usr/local/bin --filename=composer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Command Uused: docker run -e FORGE_API_TOKEN=${FORGE_API_TOKEN} forge-cli forge env:push pim-backend-uat.ppdstest.tpvai.com uat --no-interaction --verbose | |
FORGE_API_TOKEN is valid and exists as "docker run -e FORGE_API_TOKEN=${FORGE_API_TOKEN} forge-cli forge site:list" works and shows sites I have created. | |
In Application.php line 122: | |
[LaravelZero\Framework\Exceptions\ConsoleException] | |
The environment variables for that site have not been downloaded. | |