Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 523 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 523 Bytes

valorant-pugfinder-api

An API for tracking Valorant PUGs

Setup

Install and run MYSQL.

Then define the following environment variables:

export MYSQL_USERNAME=???
export MYSQL_PASSWORD=???
export MYSQL_DB=???
export MYSQL_SERVER=???

Next, set up a python virtual environment, and run

pip install -r requirements-dev.txt

Once the database and Python are set up, you can run the latest migrations with

python server.py db upgrade

And finally, run the server with

python server.py run