/mtg-deckbuilder

Primary LanguagePythonMIT LicenseMIT

MTG DeckBuilder

This app aims to allow building of a Magic: The Gathering deck as well as providing statistics and play testing.

Building the API

cd deckbuilder-api
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Run it with:

python main.py

Building the Frontend

cd deckbuilder-frontend
npm install

Run it with:

npm start