Skip to content

Commit

Permalink
add make init
Browse files Browse the repository at this point in the history
  • Loading branch information
catatsuy committed Feb 4, 2024
1 parent bf0b6a1 commit 7295e96
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.PHONY: init
init: webapp/sql/dump.sql
$(MAKE) setup-bench-image

webapp/sql/dump.sql:
cd webapp/sql && \
curl -L -O https://github.com/catatsuy/private-isu/releases/download/img/dump.sql.bz2 && \
bunzip2 dump.sql.bz2

.PHONY: setup-bench-image
setup-bench-image:
cd benchmarker/userdata && \
curl -L -O https://github.com/catatsuy/private-isu/releases/download/img/img.zip && \
unzip img.zip
29 changes: 11 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ __いずれの手順もディスク容量が十分にあるマシン上で行う
* ベンチマーカーはGoの開発環境とuserdataがあれば動く
* Dockerとvagrantはメモリが潤沢なマシンで実行すること

#### 初期データを用意する

以下の手順はすべて必要になる。

```sh
make init
```

#### MacやLinux上で適当に動かす

MySQLとmemcachedを起動した上で以下の手順を実行。
Expand All @@ -110,19 +118,13 @@ MySQLとmemcachedを起動した上で以下の手順を実行。
* MySQLのrootユーザーのパスワードが設定されていない前提になっているので、設定されている場合は適宜読み替えること

```sh
curl -L -O https://github.com/catatsuy/private-isu/releases/download/img/dump.sql.bz2
bzcat dump.sql.bz2 | mysql -uroot
cat webapp/sql/dump.sql | mysql -uroot

cd webapp/ruby
bundle install --path=vendor/bundle
bundle exec foreman start
cd ../..

cd benchmarker/userdata
curl -L -O https://github.com/catatsuy/private-isu/releases/download/img/img.zip
unzip img.zip
cd ../..

cd benchmarker
make
./bin/benchmarker -t "http://localhost:8080" -u ./userdata
Expand All @@ -137,11 +139,7 @@ make
アプリケーションは以下の手順で実行できる。dump.sqlを配置しないとMySQLに初期データがimportされないので注意。

```sh
cd webapp/sql
curl -L -O https://github.com/catatsuy/private-isu/releases/download/img/dump.sql.bz2
bunzip2 dump.sql.bz2

cd ..
cd webapp
docker compose up
```

Expand All @@ -158,12 +156,7 @@ mv nginx/conf.d/php.conf.org nginx/conf.d/php.conf
ベンチマーカーは以下の手順で実行できる。

```sh
cd benchmarker/userdata
curl -L -O https://github.com/catatsuy/private-isu/releases/download/img/img.zip
unzip img.zip
rm img.zip
cd ..

cd benchmarker
docker build -t private-isu-benchmarker .
docker run --network host -i private-isu-benchmarker /opt/go/bin/benchmarker -t http://host.docker.internal -u /opt/go/userdata
# Linuxの場合
Expand Down

0 comments on commit 7295e96

Please sign in to comment.