Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.27 KB

README.md

File metadata and controls

49 lines (35 loc) · 1.27 KB


NFTir

SUNY OSwego
CSC 482

Overview

NFTir agent is a golang server is engineered to periodically query the NFTGo server, with a 6 hours frequency, to acquire a dataset of the top 25 NFTs ranked by trading volume. The agent then breaks down the dataset into single items and push them into an Amazon DynamoDB table which will be used by the NFTir RESTful server to process the data.

Getting Started

Requirement

Clone the repo

git clone https://github.com/NFTir/agent.git
cd agent

Set up environment variables

At the root of the directory, create a .env file using .env.example as the template and fill out the variables.

Running the project

  1. Build and run agent locally using Make scripts
make go-build-local
  1. Build and run agent on Docker using Make scripts
make build-app

Resources