Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

This directory contains the Go logic that's executed by the EmbeddedOnlineFeatureServer from Python.

Build and Run

To build and run the Go Feature Server locally, create a feature_store.yaml file with necessary configurations and run below commands:

    go build -o feast ./go/main.go
    ./feast --type=http --port=8080

Running Integration Tests

To run go Integration tests, run below command

    make test-go-integration