Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/octoposprime/op-be-graphql
OctopOS Prime Backend Api Gateway
https://github.com/octoposprime/op-be-graphql
api-gateway backend golang graphql microservice
Last synced: 4 days ago
JSON representation
OctopOS Prime Backend Api Gateway
- Host: GitHub
- URL: https://github.com/octoposprime/op-be-graphql
- Owner: octoposprime
- License: mit
- Created: 2024-01-22T16:16:51.000Z (10 months ago)
- Default Branch: phase1
- Last Pushed: 2024-05-21T14:54:14.000Z (6 months ago)
- Last Synced: 2024-05-22T10:37:59.133Z (6 months ago)
- Topics: api-gateway, backend, golang, graphql, microservice
- Language: Go
- Homepage: http://www.octoposprime.com
- Size: 111 KB
- Stars: 13
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# op-be-graphql
The GraphQL Services for the Backend Layer of OctopOSPrime ( Edited )[![Build - Test](https://github.com/octoposprime/op-be-graphql/actions/workflows/ci.yml/badge.svg)](https://github.com/octoposprime/op-be-graphql/actions/workflows/ci.yml)
[![Docker Image Publish](https://github.com/octoposprime/op-be-graphql/actions/workflows/cd.yml/badge.svg)](https://github.com/octoposprime/op-be-graphql/actions/workflows/cd.yml)## Pre-Requirements
Graphql
```
export PATH="$PATH:$(go env GOPATH)/bin"go get github.com/99designs/gqlgen
make gql-generate
```## Development Environment
You have to see ![github.com/octoposprime/op-be-docs](https://github.com/octoposprime/op-be-docs) before development.#### .env
```
POSTGRES_USERNAME=op
POSTGRES_PASSWORD=op
JWT_SECRET_KEY=op
REDIS_PASSWORD=op
```#### Local Run
```
make local-run
```#### Docker Run
```
TEST=true POSTGRES_USERNAME=op POSTGRES_PASSWORD=op JWT_SECRET_KEY=op REDIS_PASSWORD=op make docker-build
make docker-run```