개발공부61 django CI/CD와 Jenkins github 연동 PHAS 캡스톤 프로젝트를 진행하면서 해보지 않았거나 익숙하지 않았던 것들을 최대한 많이 써보려고 노력하는 중이다.이번에는 jenkins를 github와 연동해서 CI/CD를 해보려고 한다.CI/CD란?CI(Continous Integrations) 란?개발자를 위한 자동화 프로세스인 지속적인 통합(Continuous Integration)을 의미한다. CI를 성공적으로 구현할 경우에 애플리케이션에 대한 새로운 코드 변경 사항이 정기적으로 빌드 및 테스트되어 공유 repository에 통합 관리되므로 공유 project를 관리하기 수월해진다.CD 란?지속적인 서비스 제공 Continuous Delivery, 지속적인 배포 Continuous Deployment 두 가지로 읽힐 수 있다.내가 알기로는 개발.. 2020. 4. 21. django CBV(Class-based views) vs FBV (Function-based views) CBV : Class-based views Class가 기반이 되는 views from django.http import HttpResponse from django.views import View class GreetingView(View): greeting = "Good Day" def get(self, request): return HttpResponse(self.greeting) FBV : Function-based views Funtion이 기반이 되는 views. 간단한 task에 사용 def userRegist(request): if request.method == "POST": return HttpResponse("POST method 입니다.") else: return HttpRespon.. 2020. 4. 20. django는 생각보다 어렵지 않았다. 작년에 했을때는 왜 어려웠는지 모르겠다. 경험 차이 일수도 있겠다. 당연히 깊이 들어가지 않았으니까 쉽지! 라고 생각할수도 있는데, 전혀 손에 잡히지 않던것들인데, 이제는 뭔가 머리속에서 그려지는 느낌이다. 뭐든지 처음부터 차근차근 해야한다. 올해 초에 spring을 잠깐 공부하면서 얻은 지식들이 도움이 많이 된 것 같다. model이 뭔지, app이 뭔지 감도 안왔는데, 정말 신기하다. 손에 잡히지도 않던 것들이 몇개월 지나니까 조금씩 잡히기 시작한다. 어떤 부분이던 해놓고 모르겠으면 나중에 다시 보면 조금씩 이해가 가는것처럼, 이런 것들도 똑같은것 같다. 2020. 4. 20. django와 postgresql 연동 psycopg2 설치 django와 postgresql을 연결시켜주는 드라이버 같다. pip install django psycopg2 로 설치한다. project/setting.py 수정 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } }이 부분을 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'PROJEC.. 2020. 4. 20. django - No Python interpreter configured for the module 프로젝트 도중 파이썬을 지웠다가 다시 설치했는데 나오는 오류. 인터프리터를 찾지 못했다. 먼저 프로젝트의 모듈 세팅을 연다. https://m.blog.naver.com/PostView.nhn?blogId=dlsehtjd&logNo=221297128999&proxyReferer=https:%2F%2Fwww.google.com%2F 파이참(PyCharm) 인터프리터 오류 해결하기 - No Python interpreter configured for the project 안녕하세요. 이번에는 파이썬의 편집 툴인 파이참(PyCharm)을설치했을 때 나오게 되는 오류증상인 No P... blog.naver.com 2020. 4. 16. Spring - No EntityManager with actual transaction available for current thread - cannot reliably process 'remove' call 에러 해결 https://stackoverflow.com/questions/32269192/spring-no-entitymanager-with-actual-transaction-available-for-current-thread Spring - No EntityManager with actual transaction available for current thread - cannot reliably process 'persist' call I get this error when trying to invoke "persist" method to save entity model to database in my Spring MVC web application. Can't really find any post or pag.. 2020. 2. 28. 이전 1 ··· 5 6 7 8 9 10 11 다음