From 4896e5544c25ac8eb9cee36e75dfc132cf1494b3 Mon Sep 17 00:00:00 2001 From: heznpc Date: Fri, 24 Apr 2026 05:01:59 +0900 Subject: [PATCH] docs: add create-starter as primary Quick Start option Promotes `npx @starter-series/create my-service --template docker-deploy` as the recommended install path, with direct clone as fallback and the existing bring-your-own-app walkthrough preserved for language swaps. Mirrored in README.ko.md. --- README.ko.md | 19 +++++++++++++++++++ README.md | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/README.ko.md b/README.ko.md index d7a2846..e2cf640 100644 --- a/README.ko.md +++ b/README.ko.md @@ -25,6 +25,25 @@ ## 빠른 시작 +**[create-starter](https://github.com/starter-series/create-starter) 사용** (권장): + +```bash +npx @starter-series/create my-service --template docker-deploy +cd my-service +# 내 앱 Dockerfile + 코드 추가 후: +docker compose up +``` + +**또는 직접 clone:** + +```bash +git clone https://github.com/starter-series/docker-deploy-starter my-service +cd my-service +docker compose up +``` + +**전체 셋업 (내 앱 가져오기):** + ```bash # 1. GitHub에서 "Use this template" 클릭 (또는 clone) git clone https://github.com/starter-series/docker-deploy-starter.git my-app diff --git a/README.md b/README.md index 2a18ec5..56abddd 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,25 @@ Build your app. Push to deploy. ## Quick Start +**Via [create-starter](https://github.com/starter-series/create-starter)** (recommended): + +```bash +npx @starter-series/create my-service --template docker-deploy +cd my-service +# Add your app's Dockerfile + code, then: +docker compose up +``` + +**Or clone directly:** + +```bash +git clone https://github.com/starter-series/docker-deploy-starter my-service +cd my-service +docker compose up +``` + +**Full setup (bring your own app):** + ```bash # 1. Click "Use this template" on GitHub (or clone) git clone https://github.com/starter-series/docker-deploy-starter.git my-app