From d15d89079b3f557bfa63b840a55ef465e95cc656 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 28 Jul 2024 00:25:36 +0900 Subject: [PATCH] 0.1.1 --- README.md | 12 ++++++++++++ RELEASE_NOTE.md | 8 ++++++++ 2 files changed, 20 insertions(+) diff --git a/README.md b/README.md index e69de29..cee28d4 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,12 @@ +device-common +====== +device-service 에서 공통으로 쓰이는 기능들의 집합 + +- config.rs : 필수 설정 정보를 AWS Parameter Store 로 부터 읽어온다. +- database.rs : pg 관련 기능(connection pool 등) +- env.rs : 환경 변수 관련 기능 / 환경 변수별 AWS Parameter Store 에서 쓰일 prefix 를 만든다. +- kinesis.rs : AWS Kinesis Stream 관련 기능 +- log.rs : log 관련 기능 / static function 으로 사용 가능한 expect_or_log +- metrics.rs : cpu / memory 등 기본 metric 수집 기능 +- orchestration.rs : orchestration 정보를 로드하는 기능 +- parameter_store.rs : AWS Parameter Store 관련 기능 \ No newline at end of file diff --git a/RELEASE_NOTE.md b/RELEASE_NOTE.md index e69de29..c3c58c0 100644 --- a/RELEASE_NOTE.md +++ b/RELEASE_NOTE.md @@ -0,0 +1,8 @@ +0.1.0 +====== +first deploy + +0.1.1 +====== +- write test code sample +- used tokio::sync::oncecell instead of std::sync::oncelock for async \ No newline at end of file