プログラミング言語やフレームワークの install を devcontainer が自動でやってくれます
- vscode が install されてること
- vscode 拡張機能、「Remote - Development」extension が install されてること
$ git clone https://github.com/WNomunomu/techtok.git
$ cd techtok
$ code . # vscode で techtok directory を open
# ctrl + shift + p でコマンドパレットを開く
# reopen in devcontainer を実行
# TechTok-FullStack-Devcontainer が起動
$ cd frontend
$ bun install
$ bun run dev
# もし command not found: bun になったら
# devcontainer 修正の余地あり
$ source ~/.bashrc$ cd backend
$ ./gradlew bootRun