Kitchen Table Magic
Built with React and TypeScript. Magic: The Gathering card data supplied by the Scryfall API.
Setup
Clone Kitchen Table Magic into your development environment:
git clone git@github.com:phrazzld/kitchen-table-magic.git
Hop into the project directory:
cd kitchen-table-magic
Get Yarn installed, then use Yarn to install Kitchen Table Magic's dependencies:
yarn install
Now get Node installed. Node will be used to run the api server on your own machine.
You'll also need MongoDB. Once MongoDB is done installing, start up a local database daemon:
mongod
Then, startup a local api server:
yarn serve
Finally, start the app locally:
yarn start
Now you should be able to visit Kitchen Table Magic running locally on your machine at "localhost:3000" in your browser!