반응형

1. rust 설치 안되어 있을 경우

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | zsh

rustc --version

 

2. cli 설치

설치 1.

npm install -g tauri

 -> 프론트엔드 개발을 위한 CLI 도구

* sharp 관련 에러가 발생하면 "brew install vips"명령어를 통해서 vips라이브러리를 수동 설치해주자

설치 2.

cargo install tauri-cli

 -> 백엔드(Rust) 빌드 및 패키징을 위한 CLI 도구

반응형
반응형

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Edge 디버그 with server",
      "type": "msedge",
      "request": "launch",
      "url": "http://localhost:8080/main.html",
      "webRoot": "${workspaceFolder}",
      "preLaunchTask": "start http-server"
    }
  ]
}

반응형

'03.웹' 카테고리의 다른 글

[VSCODE] tasks.json  (1) 2025.05.13
[AWS] RDS "Too many connections"  (1) 2024.05.26
[웹] HTTP vs HTTPS 개념과 차이점  (1) 2024.05.15
[Svelte] 기본 프로젝트 생성  (0) 2023.11.16
[PHP] composer(컴포저) 설치  (1) 2023.11.03
반응형

디버깅 실행전 http-server 실행 시키기 위한 작업

{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "start http-server",
      "type": "shell",
      "command": "npx http-server . -p 8080",
      "isBackground": true,
      "problemMatcher": {
        "pattern": [
          {
            "regexp": ".*",
            "file": 1,
            "location": 2,
            "message": 3
          }
        ],
        "background": {
          "activeOnStart": true,
          "beginsPattern": "Starting up http-server",
          "endsPattern": "Available on:"
        }
      }
    }
  ]
}

반응형

'03.웹' 카테고리의 다른 글

[VSCODE] launch.json  (1) 2025.05.13
[AWS] RDS "Too many connections"  (1) 2024.05.26
[웹] HTTP vs HTTPS 개념과 차이점  (1) 2024.05.15
[Svelte] 기본 프로젝트 생성  (0) 2023.11.16
[PHP] composer(컴포저) 설치  (1) 2023.11.03
반응형

만들 프로젝트명 : test-project

mkdir test-project

cd test-project

sudo npx create-next-app@latest . --typescript

 -> nextjs 기반으로 typescript를 사용

sudo npm install --save-dev electron electron-builder concurrently

sudo npm install electron-serve

반응형
반응형

당근 4개

홀그레인 머스타드 2t

설탕 2t

레몬즙 2t

소금 2t

후추 살짝

올리브 오일 3t

 

채썬 당근에 소금 뿌리고 30분간 재우기

재우다음 물기 짜기

물기짜고 홀그레인, 설탕, 레몬즙, 오일 넣고 잘 섞어서 통에 보관

반응형

'개인공간 > 먹을거리 만들기' 카테고리의 다른 글

유부초밥  (0) 2017.05.18
떡볶이  (0) 2017.05.18
반응형

 

1. project 폴더로 이동

2. cd android

3. ./gradlew --refresh-dependencies

 

* sha-1 key 확인

https://comuhyun.tistory.com/224

반응형
반응형

1. project 폴더로 이동

2. cd android

3. ./gradlew signingReport

반응형
반응형

1.파이참(PyCharm)에서 QtSide6 설치

 - pip install pyside6

 

2.designer(디자이너) 실행

 - pyside6-designer

 

3.디자인 파일 py 파일로 변환

 - pyside6-uic xxx.ui >> zzz.py

   -> ex) pyside6-uic main_form.ui >> main_form.py

*qt 디자이너 툴에서 main_form.ui로 저장했을 경우

반응형
반응형

경고 문구

The archive did not include a dSYM for the Flutter.framework with the UUIDs [********-****-****-****-************]. Ensure that the archive's dSYM folder includes a DWARF file for Flutter.framework with the expected UUIDs.

 

플러터를 업그레이드 해주면 해결

flutter upgrade

 

https://comuhyun.tistory.com/167

반응형
반응형

keytool 위치에 접근이 안될 경우

 - flutter doctor -v

 - 나오는 항목중에 Android toolchain -> Java binary at

*여기에 포함된 경로에 keytool이 존재함

 

배포용 release 키 만들때 keytool 위치 참고https://comuhyun.tistory.com/193

반응형

+ Recent posts