CXChanvin Xiaoinchanvin.hashnode.dev·Dec 31, 2022 · 5 min readCommon Git Command Line OperationThis article record the specific usage method of some common git command line operation git clone git clone REPOSITORY_URL Clone repository, and use the name of repository as local folder name git clone REPOSITORY_URL FOLDER Clone repository, and u...00
CXChanvin Xiaoinchanvin.hashnode.dev·Jun 20, 2021 · 4 min readPerformance Test Plan for Different EnvironmentThe settings of JMeter performance test for different environment are basically consistent, just with differences of address, account, an so on, Here I utilize Shell Script and JMeter variable to handle uniformly Install JMeter wget https://mirror...00
CXChanvin Xiaoinchanvin.hashnode.dev·May 23, 2021 · 2 min readCache Control for React App with NginxThe cache issue which typical React App confronts, can be solved by Nginx configuration Common Deployment After the app is built, we can just use Nginx to point to the static files server { listen 80; root /PATH/TO/APP/build; try_files $uri $u...00