A dumb website originally published on April 1st, 2016 that enables your friends/enemies to buy you a pizza delivery without you having to give them anything in return. It uses the Dominos API for ordering.
- A working PayPal developer account. You'll need the client/secret keys to put into the configuration.
- The proper JSON for what items you want to order www.dominos.com. See the dominos node API documentation for more details. You'll need this in the config.
- A properly filled out config file. You shouldn't need to make any actual code/logic changes for the app to work properly; as long as the config conforms to what Dominos and PayPal expect, the transaction will go through and you will get your pizza 🍕
$ npm install
$ npm run dev
By default, you should be able to hit the app at http://localhost:3003.
$ npm start
If actually running on a production server, you will need to make sure that your NODE_ENV
environment variables is set to production
so that the live PayPal transactions will kick in.
See the scripts portion of package.json for more details on what these commands are actually doing.
[ ] Add more detail to this README when it's not 2am in the morning