일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- blog
- Django
- HTML
- github
- declare
- templates
- anaconda3
- advColumnGrid
- get_object_or_404
- 백준
- COMMIT
- hackerrank
- PyCharm
- python3
- pythonanywhere
- Push
- pyhcarm
- python 3.7
- Delphi
- Visual Studio
- dbadvgrid
- 델파이
- GIT
- MSSQL
- TMS
- queryset
- 중복제거
- rank
- delphi 10.3
- c#
- Today
- Total
목록pythonanywhere (7)
DevHyun
* 상황설명 우선 sqlite3를 사용하다보니 pythonanywhere에서 배포 할때 문제가 생겼다. pythonanywhere에서 배포하려면 pull을 해야하는데 이때 db.sqlite3 파일도 같이 pull 되어버려서 덮어씌어지는 현상이 발생하였다. 이렇게 되면 pythonanywhere에서 배포된 페이지에서 입력된 데이터들은, pull을 기점으로 local 데이터로 덮어씌어지게 된다. 예를들어 1. local(127.0.0.1)에서 테스트로 test / 1 이란 포스트를 올렸고, 이상태에서 github 로 push 2. devhyun.pythonanywhere.com 에서 테스트로 testtest / 2 란 포스트를 올린 뒤 github에서 pull 이렇게 되면 pythonanywhere에서 입력..
1. pythonanywhere - console 창 열기 2. push 할 directory로 이동하기 - cd DevhyunDjangoBlog 3. git init 4. git add . 5. git commit -m 'message' 6. 해당 repository 주소 입력 - git remote add orgin https://github.com/jnhn333/DevhyunDjangoBlog 7. git push origin master
d3v3lop3r.tistory.com/category/Web/Django%26Python%20Blog%20Projecct 'Web/Django&Python Blog Projecct' 카테고리의 글 목록 Developer Windows - Delphi, C# Web - Python-Django, JS, ASP DB - MS-SQL, Oracle, MySQL, Mongo-DB Github - https://github.com/jnhn333 LinkedIn - https://www.linkedin.com/in/jong-hyun-park-1454261b3/ Email - d3vhyun@gmail.com d3v3lop3r.tistory.com 장고걸스 코치들과 자원봉사자들의 수고로 번역된 글을 참고하였습니다. ..
d3v3lop3r.tistory.com/24 Django Form 만들기(일반 사용자가 Post 수정 가능하게 만들기) Django Form 만들기(일반 사용자가 Post 추가 가능하게 만들기) 에서 이어집니다. d3v3lop3r.tistory.com/24 Django Form 만들기(일반 사용자가 Post 추가 가능하게 만들기) 장고걸스 코치들과 자원봉사자들의 수 d3v3lop3r.tistory.com d3v3lop3r.tistory.com/25 Django Form 만들기(일반 사용자가 Post 수정 가능하게 만들기) Django Form 만들기(일반 사용자가 Post 추가 가능하게 만들기) 에서 이어집니다. d3v3lop3r.tistory.com/24 Django Form 만들기(일반 사용자가 Po..
장고걸스 코치들과 자원봉사자들의 수고로 번역된 글을 참고하였습니다. tutorial.djangogirls.org/ko Template을 확장하였으니 Blog App 자체도 확장해보겠습니다~! 1. Post에 Template 링크 추가하기 *Blog/templates/Blog/post_list.html {% extends 'Blog/base.html' %} {% block content %} {% for post in posts %} {{ post.published_date }} {{ post.title }} {{ post.text|linebreaksbr }} {% endfor %} {% endblock %} 2. Title을 보여주고 Title을 클릭하면 Post의 상세페이지로 이동하는 기능 추가하기 *..
장고걸스 코치들과 자원봉사자들의 수고로 번역된 글을 참고하였습니다. tutorial.djangogirls.org/ko Blog App에서 수정사항이 있을경우 Pycharm에서 Commit-Push 한 후에 Pythonanywhere에서 pull 해줘야 동기화 가능! 1. pythonanywhere -> consoles www.pythonanywhere.com/ Host, run, and code Python in the cloud: PythonAnywhere Batteries included With Python versions 2.7, 3.3, 3.4, 3.5 and 3.6, and all the goodies you normally find in a Python installation, PythonA..
장고걸스 코치들과 자원봉사자들의 수고로 번역된 글을 참고하였습니다. tutorial.djangogirls.org/ko 1. 가상환경 사이트 선택(pythonanywhere,heroku 등등) * pythonanywhere 사용! 2. pythonanywhere 가입! www.pythonanywhere.com/ Host, run, and code Python in the cloud: PythonAnywhere Batteries included With Python versions 2.7, 3.3, 3.4, 3.5 and 3.6, and all the goodies you normally find in a Python installation, PythonAnywhere is also preconfigured..