Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Pied_Piper/PiedPiper.pptx
Binary file not shown.
24 changes: 24 additions & 0 deletions Pied_Piper/PiedPiper.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

Title: Remote Medicare by Team Pied Piper

Demo Video Link: https://www.youtube.com/watch?v=wi7NKEVaBFo

Description:
The platform enables the doctor to remotely examine the patient based on the data of the patient’s vitals. Patients have their own personal health assistant. Our chatbot also helps doctor to predict disease based on symptoms.
It also predicts if a person is infected by covid using audio of coughing.

How to run the project:

To run the nodejs app (main dashboard website):
cd Project_Directory
yarn install
yarn build
yarn start
The app will run on http://localhost:8000/

To run the disease prediction flask app and covid prediction python program:
cd flask_app_covid_from_cough
python app.py
Then go to the url given in the command line
For disease prediction go to url/predict
For covid prediction go to url/audio
9 changes: 9 additions & 0 deletions Pied_Piper/Project_Directory/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
1 change: 1 addition & 0 deletions Pied_Piper/Project_Directory/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NODE_ENV = "production"
13 changes: 13 additions & 0 deletions Pied_Piper/Project_Directory/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"parser": "babel-eslint",
"extends": ["airbnb"],
"env": {
"browser": true,
"node": true
},
"rules": {
"no-console": "off",
"comma-dangle": "off",
"react/jsx-filename-extension": "off"
}
}
17 changes: 17 additions & 0 deletions Pied_Piper/Project_Directory/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 30
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
5 changes: 5 additions & 0 deletions Pied_Piper/Project_Directory/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.vscode
node_modules
dist
*.log
yarn.lock
12 changes: 12 additions & 0 deletions Pied_Piper/Project_Directory/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: node_js

node_js:
- 8

script:
- npm run build

branches:
only:
- gh-pages
- /.*/
1 change: 1 addition & 0 deletions Pied_Piper/Project_Directory/Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web:node index.js
1 change: 1 addition & 0 deletions Pied_Piper/Project_Directory/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Team Pied Piper
Loading