https://fantasy-friends.herokuapp.com/
A League of Legends fantasy game where any summoner name can be used instead of just pro players.
Note: This setup guide does not cover everything needed to set up this application, but gives a rough idea of the steps required.
- Install Go.
- Download all third party dependencies with
go get
. - Get a Riot Developer API key from the official site.
- Set up a PostgreSQL database and set up tables as specified in the /database/database.go file.
- Set your environment settings in the environment file "
example.env
" and rename the file to ".env
". - Make an account with Heroku and install the Heroku CLI
- Set up Heroku app and db and make sure they work.
- Set your production environment settings in Heroku's config variables.
- To run locally, run
make build
andmake run
- To deploy to web, run
make deploy