A Web Application where people can help hospitals and government, by giving information about available beds. And many more features !
- Clone the repository on your system.
git clone https://github.com/abhishak3/CoviDesk
Now, navigate into the downloaded repository and follow these steps.
- Setting up Python Virtual Environment
-
Download
virtualenv
python packagepip install virtualenv
-
Creating Virtual Environment
-
For Windows
python -m venv venv
-
For Linux or MacOs
python3 -m venv venv
-
- Setting up Environment Variables
-
For Windows
set FLASK_APP=run.py set FLASK_ENV=development set FLASK_CONFIG=development set SECRET_KEY=yoursecretkey
-
For Linux or MacOs
export FLASK_APP=run.py export FLASK_ENV=development export FLASK_CONFIG=development export SECRET_KEY=yoursecretkey
- Running the Application
flask run