aws cli 로 s3 업로드 하기
$ aws s3 sync {source} s3://{bucket-name}/ --acl=public-read
# example
# ./build 폴더 내용을 example.app 버킷으로 public-read 권한으로 업로드
aws s3 sync ./build s3://example.app/ --acl=public-read
CloudFront 캐시 삭제하기
$ aws cloudfront create-invalidation --distribution-id {Distributions ID} --paths "/*"
example
$ aws cloudfront create-invalidation --distribution-id E1CQEEASFDFA --paths "/*"
RDS server 파라메터 그룹으로 database 가 utf8 형태로 변경되지 않음.
쿼리를 직접 실행하자
ALTER DATABASE {database} CHARACTER SET = 'utf8' COLLATE = 'utf8_general_ci';
다른 기타사항은