
https://unity.com/solutions/version-control?_ga=2.29140924.1624411211.1665055640-1219506181.1665055640 Version control solution for game development | Unity Unity’s version control tool is made to drastically improve the game development pipeline by enabling seamless collaboration and rapid iteration. Find out how it works. unity.com 은 잘 모르겠고 .. 그냥 하던대로 깃으로 한다. https://youtu.be/0mbeyF-MTKQ 대신 모델..
설치방법이 바뀌었다.. https://goddaehee.tistory.com/276 [Git (11)] Git GUI(1) - 소스트리(SourceTree) 설치방법 및 사용방법 [Git (11)] Git GUI(1) - 소스트리(SourceTree) 설치방법 및 사용방법 안녕하세요. 갓대희 입니다. 이번 포스팅은 [ git 소스트리 설치 및 사용 방법 ] 입니다. : ) SourceTree - 여태까지 CLI(Command Lin.. goddaehee.tistory.com 빅버켓 로그인 후 다운 받자.

>> 참고사이트 http://daddynkidsmakers.blogspot.com/2019/04/docker.html Docker 윈도우 방화벽 문제 Docker, 방화벽, 도커, 해결, 솔류션 daddynkidsmakers.blogspot.com 컴퓨터를 새로 맞춰서 도커를 깔아야하는데, 방화벽 등등 문제가 많아서 설치가 안 된다.. 해결해보자. >>> 가상화 사용 1. Hyper-V 라는 가상환경이 윈도우에서 활성화 되어있어야 한다. 더보기 >> 참고사이트 https://zkim0115.tistory.com/1523 제어판 > 프로그램 및 기능 > window 기능 켜기/끄기 > Hyper-V 켜기 : 윈도우10 홈은 가상환경이 설치가 안 되어있다. 아예 이 항목이 없다. 따라서 설치해주어야한다. -..
https://zoosso.tistory.com/835 [Git] .gitignore 설정 .gitignore 설정 git은 변경점을 추적을 추적하는데, 특정 파일들을 무시(ignore)하여 추적하지 않게 할 수 있다. ▶ Log 파일이나 Build 설정은 관리 대상에서 제외 처리할 수 있다. ex) Intellij IDE에서.. zoosso.tistory.com git ignore를 사용하여 node_moduls 와 같은 크기가 큰 파일을 제외하고 log파일도 제외하고 .env 파일과 같이 암호가 들어있는 파일을 따로 관리하여 암호를 보호할 수 있다. # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* #Se..

1. 도커? >>인프라 : 개발환경 구축 도커는 간단히 말하면 리눅스기반의 가상환경을 만들어주는데 이를 컨테이너라고 한다. 여기에 프로그램들(파이썬, open CV, postgeSQL ...)을 설치하고 프로그램 환경을 다 만들어 놓으면 Image 로 굳혀서 다른 팀원에게 똑같은 환경을 배포해 줄 수 있는 장점이있다. 2. 그러면 환경을 불러와보자 1. Doker Hub 에서 Image를 검색하고 다운 받을 코드를 볼수 있다. > 남이 만들어 놓은 것. (여기서 Doker Hub는 깃허브처럼 공개된 공간, 자신의 계정 Repository 비공개적으로 격리된 저장소) (둘다를 아우르는 단어는 Doker Registry) https://hub.docker.com/ Docker Hub Container Ima..

windows powerShell > 우분투 rm -f 강제삭제 rmi 이미지 삭제 ***경로로 이동 cd ***Dockerfile FROM postgres RUN apt-get update RUN apt-get install -y vim RUN apt-get install -y locales RUN sed -i 's/^# \(ko_KR.UTF-8\)/\1/' /etc/locale.gen RUN localedef -f UTF-8 -i ko_KR ko_KR.UTF-8 ENV LC_ALL ko_KR.UTF-8 경로안에 도커파일이 있어야한다 ! ****************************************************** docker build -t postgres:dev . docker ..
https://youtu.be/l6jBcF9vurA 7:12까지만 따라하기 [Errors : Push 할때 Token Access Denied 뜰때] https://changun516.tistory.com/132 [Error] Github & Source Tree Push Error | Git Token Error | remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead git -c diff.mnemonicprefix=false -c core.quotepath=false --.. changun516.tistory.com

[Docker hub로 이미지 공유하기 (push)] (이미지 만드는 2가지 방법) 도커를 공유한다 ! push 도커 허브의 레포지토리스 이미지 리포지토리 만들어졌다! pa_test이름의 버전 tagname cmd에서 우분투 환경의 git 설치된 이미지를 push 해보자. 1 우분투 이미지 다운로드 docker pull ubuntu:lastest 2 컨테이너 만들기 docker run -it --name my-ubuntu ubuntu bash 3 my-ubuntu컨테이너에 깃 설치하기 > apt update; > apt install git; > Y exit 나가기 4 my-ubuntu컨테이너(우분투 + 깃)를 새로운 이미지로 만들고 싶다. docker commit my-ubuntu s0109890/pa..

[image 만드는 두 번째 방법 : 빌드] Dockerfile 하나만들어서(Code 에서 : vscode에 docker extension 설치) FROM ubuntu RUN apt update && apt install -y git 우분투를 이미지를 기반으로 컨테이너를 만드는데 git을 설치해라 → 그것을 이미지로 만들어라. cmd docker build -t egoing:ubuntu-git-2 . . 은 dockerfile이있는 경로 ex) 우분투이미지 버전은 20.04 환경 python3 설치 var/www/html 경로를 만들고 그곳으로 이동 index.html 파일을 카피하고 그리고 파이선 3이 가지고 있는 http.server모듈을 활용해 웹 서버를 만든다. 참고 : 생활코딩 https://w..

[도커 : 이미지 만드는 법 - commit] 1. 우분투 이미지 다운로드 docker pull ubuntu:lastest ubuntu:18.04 #:뒤에 버전 2. 컨테이너 만들기 docker run -it --name my-ubuntu ubuntu bash 3. my-ubuntu컨테이너에 깃 설치하기 > apt update; > apt install git; > Y 4. my-ubuntu컨테이너(우분투 + 깃)를 새로운 이미지로 만들고 싶다. docker commit my-ubuntu egoing:ubuntu-git egoing 이미지 이름 : ubuntu-git 버전의 이름 (tag) 이미지 생성됨. 5. ubuntu-git 이미지를 활용해 새로운 컨테이너 생성 docker run -it --nam..
- Total
- Today
- Yesterday
- runwayai
- AI
- Midjourney
- three.js
- 후디니
- imgtoimg
- Python
- Express
- CNC
- opencv
- node.js
- 라즈베리파이
- RNN
- 유니티
- ai image generator
- VR
- krea
- sequelize
- ai film
- DeepLeaning
- TouchDesigner
- google ai studio
- Arduino
- docker
- Java
- houdini
- colab
- oculuspro
- MQTT
- Unity
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |