본문 바로가기
반응형

전체 글669

Docker Mendix BuildPack 이용해서 Mendix App 빌드 배포 해보기 Docker Mendix BuildPack 이 업그레이드 되면서 Docker 버전도 올라갔습니다. 기존 20.10 버전으로 했더니 오류가 발생하네요... Docker 업그레이드를 먼저 진행 했습니다.  1. 도커 업그레이드 ( 20 -> 27 ) 환경 : Debian 12## 도커 업그레이드 - 기존 삭제for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt-get remove $pkg; done# Add Docker's official GPG key:sudo apt-get updatesudo apt-get install ca-certificates curlsudo install -m 0755 -d .. 2024. 9. 13.
[TS]Visual Studio Code 에서 타입스크립트 제네릭 사용시, auto close tag 로 불편할 경우! Typescript 의 Generic 기능을 사용할때, 태그와 동일한 모양새 때문에, 자동 닫기 태그가 활성화 되어 매번 불편하다. ! 설정을 통해서 TypeScript 에서는 자동닫기를 비활성화 하면 도움이 된다.  Ctrl+Shit+P  > Prefrences: Open User Settings(JSON) "auto-close-tag.activationOnLanguage": [ "html", "xml", "javascript", "javascriptreact", "typescriptreact", 2024. 9. 10.
[TS]graphQL 샘플 프로젝트 생성 ( feat. GraphQL과 타입스크립트로 개발하는 웹 서비스 ) node -v : 20.16.0 # 프로젝트 구성 ( 프로젝트 루트 /graphql-book-fullstack-project )npm i -g yarn git init .gitignore 파일 생성 ( 아래 사이트에서 react, node 를 넣고 파일로 생성 )gitignore.io - 자신의 프로젝트에 꼭 맞는 .gitignore 파일을 만드세요 (toptal.com)# 프론트 생성 make projectcd projectyarn create react-app --template @chakra-ui/typescript web cd web yarn startyarn add @apollo/client graphql# 백엔드 생성 ## /project 에서 mkdir server cd server yarn.. 2024. 9. 9.
pgVector 설치하기 ( postgresql 을 vectordb 로 활용! ) on docker 저는 도커로 postgresql16 버전을 설치한 상태에서 pgVector 를 추가로 설치해 보았습니다.  1. postgresql 이 설치된 도커 접속 2. 필요 패키지 설치 ( root 에서 실행 = git, gcc, make )# apt update# apt install git# apt install make# apt install build-essential 3. pgVector 설치 방법에 따라 설치pgvector/pgvector: Open-source vector similarity search for Postgres (github.com) GitHub - pgvector/pgvector: Open-source vector similarity search for PostgresOpen-sou.. 2024. 9. 5.
Mendix Studio Pro - Extension 개발하기 아래링크의 내용을 따라 했습니다. How to Make Extensions | Mendix How to Make ExtensionsThe release of Mendix Studio Pro 10.12 was also the introduction of extensions. If you aren't sure what this means, extensions are a way to edit thewww.mendix.com 1. Visual Studio 2022 Community 설치.Net Multiplatform app , .Net Desktop development  2개 체크하고 인스톨! 2. C# 클래스 라이브러리로 프로젝트 생성 - MyFirstExtension 3. NuGet 패키지 관리자를 이용.. 2024. 8. 28.
Pluggable 웹 위젯 만들기 - 2 ( 공식문서 따라하기 ) 이전글 : Pluggable 웹 위젯 만들기 - 1 ( 공식문서 따라하기 ) (tistory.com) Pluggable 웹 위젯 만들기 - 1 ( 공식문서 따라하기 )0. node.js lts 버전을 설치한다. ( 저는 20.16.0 버전을 설치하고 실행했습니다. ) 1. 멘딕스 실행후, Blank 웹으로 프로젝트 생성2. 샘플 엔티티 생성3. 홈에 Data View 위젯을 추가하고,데이터 소스로 마이taisou.tistory.com 1. 수정권한 설정하기 ( 수정 가능 변경 ) 1.1 수정여부 시스템 프로퍼티 추가수정 src/TextBox.xml Text Box Edit text input .. 2024. 8. 27.
Pluggable 웹 위젯 만들기 - 1 ( 공식문서 따라하기 ) 0. node.js lts 버전을 설치한다. ( 저는 20.16.0 버전을 설치하고 실행했습니다. ) 1. 멘딕스 실행후, Blank 웹으로 프로젝트 생성2. 샘플 엔티티 생성3. 홈에 Data View 위젯을 추가하고,데이터 소스로 마이크로플로우를 추가한 후, 이름을 DSS_CreateTestObject 로 지정 4. DSS_CreateTestObject 를 아래와 같이 작성CreateObject 하여서 2의 엔티티를 설정하고, NewEntity 로 리턴변수 선언후 오른쪽 클릭해서 Set $NewEntity as return value 선택5. Home 페이지로 돌아가서 3에 TextBox 를 추가하고, 2에서 생성한 엔티티의 속성(SampleData)를 선택 6. 플러거블 위젯 생성기를 통해서 아래와.. 2024. 8. 23.
오픈소스 빌드하기 ( SQLite ) 1. 소스코드 다운로드SQLite Download Page SQLite Download PageTemplates (1) and (2) are used for source-code products. Template (1) is used for generic source-code products and templates (2) is used for source-code products that are generally only useful on unix-like platforms. Template (3) is used for precompiled biwww.sqlite.org컴파일 Configure 스크립트가 포함된 sqlite-autoconf-3460100.tar.gz 파일을 다운받습니다.현재 기준 버전 .. 2024. 8. 22.
오픈소스 빌드하기 ( OpenSSL ) 1. 소스 다운로드Downloads | Library (openssl-library.org) DownloadsThe master sources are maintained in our git repository, which is accessible over the network and cloned on GitHub, at https://github.com/openssl/openssl. Bugs and pull patches (issues and pull requests) should be filed on the GitHub repo. Please familiariopenssl-library.org현재 기준 3.3.1 최신으로 다운로드 함 2. 압축해제 및 컴파일 방법 확인파일내 INSTALL.md 파일에 .. 2024. 8. 21.
반응형