본문 바로가기
반응형

분류 전체보기3262

[파운드리 가격 난리] 삼성전자 엄청난 기회가 온다!! https://www.youtube.com/watch?v=ERAwbfkUV4s 2022. 2. 23.
[접기 달인] 삼성 기술 근황!! 2022. 2. 23.
매너있는 사슴!! 2022. 2. 23.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
1 1 2022. 2. 22.
54장. CI/CD 파이프라인 요약 ===================================== Now we have an artifact or a package of software, we have tested it and we are ready for deployment. So what to do next? We want to have this somewhere where a client, either from a mobile app or from a web location, can access this car information to displayed for the end users. That leads to opposite direction in which you can go if you want to deploy some.. 2022. 2. 22.
53장. 테스트 단계 : Adding a smoke test (기초테스트) script: - java -jar ./build/libs/cars-api.jar & - sleep 30 - curl http://localhost:5000/actuator/health | grep "UP" ## Postman 에서 정보 확인 ## .gitlab-ci.yml stages: - build - test build: stage: build image: openjdk:12-alpine script: - ./gradlew build artifacts: paths: - ./build/libs/ smoke test: stage: test image: openjdk:12-alpine before_script: - apk --no-cache add curl script: - java -jar ./buil.. 2022. 2. 22.
[삼성전자 또 초대박] 터졌습니다. 존버는 승리합니다. https://www.youtube.com/watch?v=WZKnxkQNC-M 2022. 2. 22.
52. 빌드 단계: Gitlab CI로 Java 애플리케이션 빌드 ## IntelliJ 에서 .gitlab-ci.yml 생성 후, 빌드 -> Jar 파일 생성 ## .gitlab-ci.yml stages: - build build: stage: build image: openjdk:12-alpine script: - ./gradlew build artifacts: paths: - ./build/libs/ ===================================================== Now that we know which command is responsible for building this type of project, it's not time to start building the catalepsy pipeline. So what I'm goin.. 2022. 2. 22.
내일 삼성전자 주가 와우! 조정 끝!!이제 반등 갑니다!! https://www.youtube.com/watch?v=0SqK0BX37Ic 2022. 2. 21.
기쁜 소식 나왔습니다!!M&A 난리났다!!삼성전자놀라지 마세요!! https://www.youtube.com/watch?v=2SbM5CXUVrU 2022. 2. 21.
삼성전자 아주좋은소식 나왔습니다!! 어떻게 이럴수가!! 1,600% 난리났다!! https://www.youtube.com/watch?v=EZ1uuBhJfAI 2022. 2. 21.
[농심 신제품] 컵라면 한개당 5천만원!! 2022. 2. 21.
51장. 빌드 단계: 로컬에서 Java 애플리케이션 빌드 ## CMD 빌드 방법 ## GUI 빌드 방법 (build - libs - cars-api.jar 파일 생성) ## GUI Clean 방법 (cars-api.jar 파일 삭제) ## 하기 내용시 재부팅 할것!! ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation. ## Gradle이란 무엇입니까? 개요 Gradle은 거의 모든 유형의 소프트웨어를 빌드할 수 있을 만큼 충분히 유연하도록 설계된 오픈 소스 빌드 자동화 도구입니다. 다음은 가.. 2022. 2. 21.
50장. 지속적 통합(CI) 파이프라인 개요 ====================================== We are ready to start building a pipeline for this project, and the first step is to start with the pipeline, obviously, because we first are trying to build something and after that we are trying to deploy it. If you remember, the pipeline typically has a few stages like build code, quality test and packaging the application for later use, especially for d.. 2022. 2. 21.
49장. Postman으로 API 호출하기 ## Import 로 Json 오픈, Localhost 로 설정 - CRUD 테스트 - 브라우저 조회가능 http://localhost:5000/cars https://www.youtube.com/watch?v=JzpFsrZnNDo http://pizzeria-valentino.herokuapp.com/api/orders http://pizzeria-valentino.herokuapp.com/api/auth =============================================== So after opening Posman, I will go to import. And are two files that need importing, the first one is the collection, th.. 2022. 2. 21.
48장. 자바 애플리케이션 소개 ## Gitlab 프로젝트 생성 https://gitlab.com/gitlab-course-public/cars-api gitlab-course-public / cars-api GitLab.com gitlab.com ## API란? API는 웹사이트와 같은 그래픽 인터페이스가 없는 프로그램입니다. 예를 들어 API는 프론트 엔드 애플리케이션 또는 모바일 애플리케이션에서 프로세스 또는 프로세스에서 데이터를 표시하는 데 사용됩니다. https://www.youtube.com/watch?v=iFMLyMgCUTs ## 사전 설치 개발 툴 https://www.jetbrains.com/idea/download/download-thanks.html?platform=windows&code=IIC Thank you f.. 2022. 2. 21.
47. Overview (Deploy JAVA To AWS Elastic Beanstalk) In this section, we increase the complexity of the application we are building and deploying, we'll be building and testing a job application and will deploy to Amazon Web Services, also known as a W.S. Anderson. If you're not a Java developer or you are not interested in using Java or A.W. with your projects, this section tries to provide you with a realistic example. I can assure you it is tot.. 2022. 2. 21.
46장. ​​작업 템플릿 만들기 ## .deploy_template 생성 후, - deploy staging, deploy production 상속 ## .gitlab-ci.yml image: node stages: - build - test - deploy review - deploy staging - deploy production - production tests cache: key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ variables: STAGING_DOMAIN: aido-stg.surge.sh PRODUCTION_DOMAIN: aido-pro.surge.sh build website: stage: build only: - master - merge_requests script: -.. 2022. 2. 21.
[삼성전자 vs 은행예금] 순간의 선택이 가져올 충격적인 결과! 최소 00배 차이 납니다!! https://www.youtube.com/watch?v=yyc6jWVfl8g 2022. 2. 21.
45장. Anchors ## Anchors 활용 - 중복 콘텐츠 방지 - 다른 개체의 속성을 상속 https://codebeautify.org/yaml-to-json-xml-csv Best Online YAML Converter - Convert YAML Strings into JSON, XML, CSV codebeautify.org ====================================================== Yambo has a very nice feature called Anker's in the beginning, it does seem a bit weird to use it, but in this lecture I would try to explain you what anchors are, how .. 2022. 2. 21.
반응형