inflearn logo
inflearn logo

React + API Server Project Development and Deployment (CI/CD)

Create a React development environment, the hallmark of SPAs, and automatically generate API documentation through a Node.js-based API Server and Swagger. Understand the differences between local development environments and development servers, and easily follow along to use AWS. Course materials: https://bit.ly/okreactapi

(4.6) 46 reviews

627 learners

Level Basic

Course period Unlimited

CI/CD
CI/CD
SPA
SPA
CI/CD
CI/CD
SPA
SPA

News

2 articles

  • kenuheo님의 프로필 이미지

    Hello. The AWS screen has changed, so I have updated the video on creating an instance separately.

    https://www.youtube.com/watch?v=OqnGEQnMbVI&t=92s

    At the beginning of the video installing PostgreSQL, we create an EC2 instance.

    This is the version using Amazon Linux 2023 (AL2023) AMI, and I will share the video of the source code running here after testing.

     

    0
  • kenuheo님의 프로필 이미지

    Edited

    Hello. Thank you for listening to the lecture.

    First of all, I'll share it quickly.

    Since the release of Amazon Linux 2023 (AL2023) on 2023/03/15 this year, the commands for configuring nginx and HTTPS have changed.

    The amazon-linux-extras command that was present in Amazon Linux 2 (AL2) has been removed, so the nginx installation changes as follows:

    # sudo amazon-linux-extras install nginx1 #AL2 sudo yum install nginx

    And the part that has changed the most is this:

    04. 도메인 등록과 HTTPS 설정 settings

    certbot can be installed using pip .

    # Amazon Linux 2023 sudo su - dnf install python3 augeas-libs dnf remove certbot python3 -m venv /opt/certbot/ /opt/certbot/bin/pip install --upgrade pip /opt/certbot/bin/pip install certbot certbot-nginx ln -s /opt/certbot/bin/certbot /usr/bin/certbot certbot --nginx systemctl restart nginx

    The existing Amazon Linux 2 (AL2) is as follows:

    # Amazon Linux 2 sudo su - yum -y install yum-utils yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum install certbot python2-certbot-nginx certbot --nginx systemctl restart nginx

     

    Hope this helps 🙏

    reference

     

    0

$34.10