Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #52

Merged
merged 8 commits into from
May 11, 2024
Merged
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
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# ia-project
# ia-project

## Our project

:brain: **Braintracker!** :brain: This innovative web application harnesses the power of machine learning to analyze your brain MRI images and medical history documents.

Upload your data, and Braintracker springs into action, providing a comprehensive report on the presence of a tumor and offering personalized health recommendations. But remember, while Braintracker is a powerful tool, **it doesn’t replace the need for professional medical advice**.

More info in our :point_right: [wiki](https://github.com/Sebastian-411/ia-project/wiki)

### How to run it

First, open a terminal and clone this project on a folder with

```bash
git clone https://github.com/Sebastian-411/ia-project.git
cd ia-project
```

>[!IMPORTANT]
> Make sure you have Docker and Docker compose installed :whale2:
>

You can run front-end and backend with

```bash
docker compose up
```

Prepare your MRI and your medical history and try :brain: Braintracker :brain: in `localhost:8080`!
7 changes: 3 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
build: ./backend
env_file:
- path: ./backend/.env
required: true
ports:
- 8000:8000
volumes:
Expand All @@ -15,12 +16,10 @@ services:
frontend:
depends_on:
- backend
build:
./frontend
# context: ./frontend
# dockerfile: Dockerfile.dev
build: ./frontend
env_file:
- path: ./frontend/.env
required: true
ports:
- 8080:80
volumes:
Expand Down
3 changes: 3 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"preview": "vite preview"
},
"dependencies": {
"html-to-text": "^9.0.5",
"markdown-it": "^14.1.0",
"pdfmake": "^0.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Loading
Loading