Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tf63/go-graph-exp

GoでGraphQLのAPIを作るチュートリアル
https://github.com/tf63/go-graph-exp

Last synced: 24 days ago
JSON representation

GoでGraphQLのAPIを作るチュートリアル

Awesome Lists containing this project

README

        

# GoでGraphQLのサーバーを立ち上げるまで

### 環境設定
backend
- Goのコンテナ
- devcontainerでVSCodeにアタッチするように設定
- 8080:8080でフォワーディング
- `docker/backend/Dockerfile`

postgres
- DBコンテナ
- 5432:5432

pgadmin4
- pgadminのコンテナ
- 8888:80

環境変数は`.env.dev`参照

### コンテナの立ち上げ
```bash
docker compose up -d
```