728x90 반응형 분류 전체보기59 git submodule errors fatal: in unpopulated submodule 원인: 다른 곳과 submodule 연동이 안됨. 해결 1. 최상단에 .gitmodules 파일 안에 정보를 넣는다. 2. git module 초기화, update rm -rf .git/modules rm -rf build git submodule update --init ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to xxxx 원인: 현재 submodule에 remote repository의 가장 최신의 것이 반영되지 않음 해결 1. 최신의 remote repo 정보 끌어오기 git pull git submodule .. 2020. 3. 13. TRON 기반 개발 기초 정리(로컬 개발) TRON 특징 https://developers.tron.network/docs/getting-started tron이 내세우는 장점? 퍼포먼스가 높다(TPS) 확장성이 좋다(scalability) 사용성이 좋다 낮은 비용 유저 친화적 Unique DPOS(Delegated Proof of Stake) 지분 증명 방식 Installation TRONBOX (npm) https://github.com/TRON-US/tronbox Wallet-cli https://github.com/tronprotocol/wallet-cli Tron quickstart docker git clone https://github.com/tronprotocol/docker-tron-quickstart Installation Tr.. 2020. 3. 13. python flask - blueprint main.py from flask import Flask from test_api import test_api app = Flask(__name__) app.register_blueprint(test_api) @app.route('/') def main(): return "hello" test_api.py from flask import Blueprint test_api = Blueprint('test_api', __name__, url_prefix='/test') @test_api.route("/here") def test(): return "here" flask server 올린 후 request: localhost:5000/ response : hello request: localhost:5000/.. 2020. 3. 12. 개발 시 chrome cache 없애기 전략 방법1. 일시적 설정 > 개인정보보안 > 인터넷 기록 삭제 방법 2. 영구적 : Head tag에 해당 내용 추가 방법 3 지속됨 - jsp 혹은, jinja, django등의 template을 사용 중일 경우 tag 끝에 random value 붙이기 -> 새로운 js, css를 불러오면서 캐시가 생성되지 않음. {% set randomNumberStr = (range(1, 10000) | random |string) %} 2020. 3. 11. 이전 1 ··· 11 12 13 14 15 다음 728x90