Skip to content

Commit 8dd9af9

Browse files
committed
feat: add root-level infra:up/down tasks and GitHub stars badge
1 parent 783c67b commit 8dd9af9

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

README.ko.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Fullstack Starter
22

3+
[![GitHub Repo stars](https://img.shields.io/github/stars/first-fluke/fullstack-starter?style=flat&logo=githubsponsors)](https://github.com/first-fluke/fullstack-starter/stargazers)
4+
35
[English](./README.md) | 한국어
46

57
프로덕션 레디 풀스택 모노레포 템플릿. Next.js 16, FastAPI, Flutter, GCP 인프라를 포함합니다.
@@ -106,7 +108,7 @@ cd apps/mobile && flutter pub get
106108
### 3. 로컬 인프라 시작
107109

108110
```bash
109-
mise //apps/api:infra:up
111+
mise infra:up
110112
```
111113

112114
시작되는 서비스:
@@ -170,6 +172,8 @@ mise tasks --all
170172
| `mise typecheck` | 타입 체크 |
171173
| `mise i18n:build` | 다국어 파일 빌드 |
172174
| `mise gen:api` | OpenAPI 스키마 및 API 클라이언트 생성 |
175+
| `mise infra:up` | 로컬 인프라 시작 |
176+
| `mise infra:down` | 로컬 인프라 중지 |
173177

174178
### 앱별 태스크
175179

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Fullstack Starter
22

3+
[![GitHub Repo stars](https://img.shields.io/github/stars/first-fluke/fullstack-starter?style=flat&logo=githubsponsors)](https://github.com/first-fluke/fullstack-starter/stargazers)
4+
35
English | [한국어](./README.ko.md)
46

57
Production-ready fullstack monorepo template with Next.js 16, FastAPI, Flutter, and GCP infrastructure.
@@ -106,7 +108,7 @@ cd apps/mobile && flutter pub get
106108
### 3. Start Local Infrastructure
107109

108110
```bash
109-
mise //apps/api:infra:up
111+
mise infra:up
110112
```
111113

112114
This starts:
@@ -170,6 +172,8 @@ mise tasks --all
170172
| `mise typecheck` | Type check |
171173
| `mise i18n:build` | Build i18n files |
172174
| `mise gen:api` | Generate OpenAPI schema and API clients |
175+
| `mise infra:up` | Start local infrastructure |
176+
| `mise infra:down` | Stop local infrastructure |
173177

174178
### App-specific Tasks
175179

mise.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ test = { depends = ["//apps/api:test", "//apps/web:test", "//apps/worker:test"],
2121
typecheck = { depends = ["//apps/api:typecheck", "//apps/web:typecheck"], description = "Type check all apps" }
2222
"i18n:build" = { depends = ["//packages/i18n:build"], description = "Build i18n files" }
2323
"gen:api" = { run = "mise //apps/api:gen:openapi && mise //apps/web:gen:api", description = "Generate OpenAPI schema and API clients" }
24+
"infra:up" = { depends = ["//apps/api:infra:up"], description = "Start local infrastructure" }
25+
"infra:down" = { depends = ["//apps/api:infra:down"], description = "Stop local infrastructure" }
2426

2527
[tasks."git:commit-msg"]
2628
description = "Validate commit message using commitlint"

0 commit comments

Comments
 (0)