/coronavirus-info

This is a basic flask application to get daily coronavirus information.

Primary LanguageJavaScript

coronavirus-info

This is a basic flask application to get daily coronavirus information.

Prerequisites

You need to install Python 3.6 or up

Getting the project

  1. Create project folder:
mkdir <your-project-name>
cd <your-project-name>
  1. Clone the project:
git clone https://github.com/GokhanYilmaz44/coronavirus-info.git
  1. Create a virtual environment:
python3 -m venv env

if you are using MAC or Linux:
source env/bin/activate

or Windows OS:
.\env\Scripts\activate
  1. Install all dependencies:
pip install -r requirements.txt
  1. Create initial database tables:
open python shell on your console
>> from app import db
>> db.create_all()
>> exit()
  1. Run the project server:
python app.py

Authors