Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 554 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 554 Bytes

Project EVE

Interactive Bot Chat

How to run

Installation

go get "github.com/AAA-Intelligence/eve"

Run

After starting the webserver open http://localhost:8080/register in your browser to create an account.

With Makefile

cd "%GOPATH%/src/github.com/AAA-Intelligence/eve"
make deps
make all

Without Makefile

Windows

go build -o "eve.exe" "github.com/AAA-Intelligence/eve/cmd/eve" 
eve.exe -http 8080

macOS / linux

go build -o "eve" "github.com/AAA-Intelligence/eve/cmd/eve" 
./eve -http 8080