vscode 3

Serverless 설치과정과 CI/CD를 위한 Github Repository 생성 및 연결

pandas/ numpy 라이브러리 처리 ci/cd 설정하기 …or create a new repository on the command line echo "# serverless-flask-memo-server" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/pfshin22/serverless-flask-memo-server.git git push -u origin main …or push an existing repository from the command line git remote add origin https:/..

API (AWS) 2022.01.11

AWS Lambda를 이용한 Serverless Applications (이론)

https://aws.amazon.com/ko/serverless/ 서버리스 컴퓨팅 – Amazon Web Services 웹 애플리케이션 웹 애플리케이션 구축 등록된 사용자가 항목을 생성하고 업데이트하고 보고 삭제할 수 있는 단순한 ‘할 일 목록’ 웹 앱을 구축합니다. 이벤트 기반 웹 애플리케이션에서는 A aws.amazon.com https://velog.io/@jeong-god/Python%EA%B3%BC-AWS-S3%EC%97%B0%EB%8F%99%ED%95%98%EA%B8%B0 Python과 AWS S3연동하기 Python과 AWS S3연동하기 velog.io https://nodejs.org/en/ Node.js Node.js® is a JavaScript runtime built on Chr..

API (AWS) 2022.01.10

conda 파이썬 가상환경 설치하기

회사 서버의 파이썬 버전이 3.7이다 그런데 내 컴퓨터의 파이썬 버전은 3.8.8 이다. 따라서, 회사 서버의 파이썬 버전과 똑같은 버전으로 내 컴에 파이썬을 설치해야지, 개발하고 테스트가 동일하게 가능하다! 현재 내 버전 : Python 3.9.7 1. 콘다로 가상환경 만드는 것! 파이썬만 설치하는 경우 가상환경 만들기 명령어 conda create -n ec2_37 python=3.7 ---- 2. 설치된 파이썬과 설치된 라이브러리를 파일로 옮기는 것! conda list --explicit > spec-file.txt 3. 파일을 가지고, 새로운 가상환경 만들기! conda create -n 가상환경이름 --file spec-file.txt ---- 4. 가상환경에 들어가고 나오는 방법 conda ..

Streamlit 2021.12.24