본문 바로가기

프로그래밍24

yarn berry pnp monorepo npx create-nx-workspace@latest boardnx --preset=ts --workspaceLayout=packages yarn set version berry .yarnrc.yml nodeLinker: "pnp" yarn add -D @nrwl/nest, next 등등 에러 나오는대로 설치 yarn nx g @nrwl/next:app yarn nx g https://kimyanglogging.tistory.com/8 2023. 3. 20.
nx workspace nx project create npx create-nx-workspace npm i @nrwl/react npx nx g @nrwl/react:application client nest js 추가 npm i @nrwl/nest npx nx g @nrwl/nest:app react next npm i @nrwl/next npx nx g @nrwl/next:app my-new-app 전체 실행 npx nx run-many --target=serve 개별 실행 npx nx serve 만들어진 react-next 앱에 페이지 추가하기 nx g @nrwl/next:page my-new-page --project=my-new-app nx g @nrwl/next:component my-new-component --.. 2023. 3. 13.
AWS S3 - CloudFront - Github action 자동배포 방법 https://www.youtube.com/watch?v=ABagrTFN7z0 { "Version": "2012-10-17", "Statement": [ { "Sid": "AccessToGetBucketLocation", "Effect": "Allow", "Action": [ "s3:GetBucketLocation" ], "Resource": [ "arn:aws:s3:::*" ] }, { "Sid": "AccessToWebsiteBuckets", "Effect": "Allow", "Action": [ "s3:PutBucketWebsite", "s3:PutObject", "s3:PutObjectAcl", "s3:GetObject", "s3:ListBucket", "s3:DeleteObject" ], "Re.. 2021. 12. 24.
Spring boot nginx 연동 설정 80 => 8080 https://dev-alxndr.tistory.com/13 Nginx Spring boot 연동 (reverse proxy) nignx → spring boot reverse proxy WebServer와 WAS를 분리하기 위해 Nginx를 활용해보도록 하겠습니다 분리하는 이유는 해당 링크 정리가 잘되어 있으니 참고 바랍니다. 아직 Nginx가 설치안되어 있다면 링크 dev-alxndr.tistory.com server { # SSL configuration # # listen 443 ssl default_server; # listen [::]:443 ssl default_server; # # Note: You should disable gzip for SSL traffic. # See: https:/.. 2021. 10. 30.
AWS에 돈 안내고 싶다! 내 집 컴퓨터로 서비스 운영하기 0. 우분투 리눅스로 컴퓨터 os 를 설치한다. 서버 = 리눅스 국룰 필요하다면 ssh 통신은 아래 링크에 적힌 방법으로 열 수 있다. openssh-server 및 openssh-client 설치 # sudo apt-get install openssh-server # sudo apt-get install openssh-client ssh 설치 # sudo apt-get install ssh sudo gedit /etc/ssh/sshd_config # Port 22 위와 같이 되어있는 부분을 찾아 아래처럼 바꾼다(# 빼기) Port 22 3) restart sudo service ssh restart https://www.crocus.co.kr/1646 주의사항 - ssh 통신을 열었다면. 가급적 비밀번.. 2021. 10. 6.