https://github.com/octoposprime/op-be-auth
OctopOS Prime Backend Authorization and Authentication Service
https://github.com/octoposprime/op-be-auth
authentication authorization backend golang microservice
Last synced: 9 months ago
JSON representation
OctopOS Prime Backend Authorization and Authentication Service
- Host: GitHub
- URL: https://github.com/octoposprime/op-be-auth
- Owner: octoposprime
- License: mit
- Created: 2024-05-02T14:31:24.000Z (about 2 years ago)
- Default Branch: phase1
- Last Pushed: 2024-10-09T10:01:49.000Z (over 1 year ago)
- Last Synced: 2025-05-06T01:37:50.272Z (about 1 year ago)
- Topics: authentication, authorization, backend, golang, microservice
- Language: Go
- Homepage: http://www.octoposprime.com
- Size: 95.7 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# op-be-auth
The Auth Services for the Backend Layer of OctopOSPrime - Computed Microservices
[](https://github.com/octoposprime/op-be-auth/actions/workflows/ci.yml)
[](https://github.com/octoposprime/op-be-auth/actions/workflows/cd.yml)
## Pre-Requirements
## Development Environment
You have to see  before development.
#### .env
```
POSTGRES_USERNAME=op
POSTGRES_PASSWORD=op
JWT_SECRET_KEY=op
REDIS_PASSWORD=op
POSTGRES_DATABASE=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
```