https://github.com/feast-dev/feast-keto-auth-server
https://github.com/feast-dev/feast-keto-auth-server
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/feast-dev/feast-keto-auth-server
- Owner: feast-dev
- Created: 2020-07-15T06:55:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-24T02:43:13.000Z (over 5 years ago)
- Last Synced: 2025-03-05T02:41:30.117Z (10 months ago)
- Language: Java
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Feast Keto Authorization Adaptor
This application acts as an external HTTP authorization adaptor/proxy for Feast to integrate with [Keto](https://github.com/ory/keto).
> :warning: **This repository is purely an example and should not be used in production!**
## Running the adaptor
Assuming Keto is running at `localhost:4466`
```
mvn spring-boot:run -Dketo.url=https://localhost:4466
```
## Testing the adaptor
```
mvn clean test
```
## Building the adaptor
```
mvn clean package
```
## Running the adaptor as a docker container
```
docker run \
-e KETO_URL=http://localhost:4466 \
gcr.io/kf-feast/feast-keto-auth-server:latest
```
## Building the docker container
```
docker build . \
-t gcr.io/kf-feast/feast-keto-auth-server:latest \
-t gcr.io/kf-feast/feast-keto-auth-server:0.0.1
```