/covid-api-india

Web Application made using Flask, displays the covid cases of india, provides high speed API. [under development]

Primary LanguageCSS

covid-api-india

Screenshot of App

APP

Quick Start

  1. Clone the repo
$ git clone https://github.com/tushxr16/covid-api-india.git
$ cd covid-api-india
  1. Initialize and activate the virtual env:

I have used virtual-env here to create the env.

$ pip install virtualenv

If error occurs it must be probably due to the EXECUTION_POLICY. Change it via running as admin PS.

$ SET ExecutionPolicy unrestricted

Accept the ExecutionPolicy status.

$ .\env\Scripts\activate.ps1
  1. Install the dependencies:
$ pip install -r requirements.txt
  1. Run the development server:
$ python .\app.py
  1. Navigate to http://localhost:8000

  2. Create a local Git repository:

$ git init
$ git add .
$ git commit -am "your commit msg"
  1. Push changes to code on Heroku:
$ git push heroku master