Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 622 Bytes

README.md

File metadata and controls

48 lines (32 loc) · 622 Bytes

Feel the SF LUV

Backend

To build the server:

$ cd backend
$ go install ./...

To run the server:

By default the server will install in your go/bin directory

$ ~/go/bin/luv_server

The server will be more configurable in the near future :) Currently by default the server works against the Polygon mainnet. It can be configured to point elsewhere with an environment variable, e.g.:

$ CHAIN_URL='https://rpc-mumbai.maticvigil.com' ~/go/bin/luv_server

Frontend

To build the frontend:

$ cd frontend
$ npm i

To run the frontend:

$ npm run start