Skip to content

Latest commit

 

History

History

api

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

This is the back-end API

Built with Python/Flask

Deploying via Heroku CLI

  1. Install the Heroku CLI with npm because the windows install is entirely blocked
npm install heroku
  1. Log in to the CLI
heroku login
  1. Initialise a new git and add remote
git init
heroku git:remote -a modern-amazon-api
  1. Commit changes and deploy
git add .
git commit -am "Add stuff"
git push heroku master