Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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を作るチュートリアル
- Host: GitHub
- URL: https://github.com/tf63/go-graph-exp
- Owner: tf63
- Created: 2023-09-09T14:54:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-20T09:46:05.000Z (about 1 year ago)
- Last Synced: 2023-09-20T21:53:11.483Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 571 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoでGraphQLのサーバーを立ち上げるまで
### 環境設定
backend
- Goのコンテナ
- devcontainerでVSCodeにアタッチするように設定
- 8080:8080でフォワーディング
- `docker/backend/Dockerfile`postgres
- DBコンテナ
- 5432:5432pgadmin4
- pgadminのコンテナ
- 8888:80環境変数は`.env.dev`参照
### コンテナの立ち上げ
```bash
docker compose up -d
```