Tuesday, December 24, 2024
api load testing using locust
Use locust python tool for api load testing.
Friday, December 20, 2024
PIP install one by one package from requirements.txt
use below command:
cat requirements.txt | xargs -n 1 pip installPIP install one by one package from requirements.txt
Wednesday, December 11, 2024
How to remove sensitive data from Git repo
install git-filter-repo
brew install git-filter-repo
run command :git filter-repo --invert-paths --path PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA
git remote add origin https://github.com/OWNER/REPOSITORY.git
git push origin --force --all
Friday, December 6, 2024
AMPLIFY - Sample YAML file
version: 1
frontend:
phases:
preBuild:
commands:
- yarn install --ignore-engines
build:
commands:
- yarn run build
artifacts:
baseDirectory: build
files:
- '**/*'
cache:
paths:
- node_modules/**/*
Subscribe to:
Comments (Atom)