Skip to content

Commit 06be92b

Browse files
suna-bigclaude
andcommitted
Simplify Makefile commands and clarify Cloud9 requirement
- Remove `run-local` target from Makefile (local execution not supported) - Rename `run-cloud9` to `run` for simpler command - Add notice in README that project is designed for AWS Cloud9 - Clarify that MySQL and Redis do not start automatically in local environment 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent bf57dc8 commit 06be92b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

Makefile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ default: generate
44
test:
55
go test -race -cover -parallel 4 ./...
66

7-
.PHONY: run-local
8-
run-local:
9-
@ENV_ENVIRONMENT=local go run main.go
10-
11-
.PHONY: run-cloud9
12-
run-cloud9:
7+
.PHONY: run
8+
run:
139
@ENV_ENVIRONMENT=cloud9 go run main.go
1410

1511
.PHONY: generate

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# server-performance-tuning-2023
22

3-
## Cloud9で実行する場合
3+
**注意**: このプロジェクトは AWS Cloud9 環境での実行を前提としています。
4+
ローカル実行は想定されておらず、MySQL と Redis は自動的に起動しません。
5+
6+
## 実行方法
47
```shell
58
$ make setup
6-
$ make run-cloud9
9+
$ make run
710
```

0 commit comments

Comments
 (0)