Skip to content
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: 31 additions & 0 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Installation

### Prerequisites

- Go 1.21+
- Node.js 18+
- fpocket (`sudo apt-get install fpocket` on Debian/Ubuntu, or build from [source](https://github.com/Discngine/fpocket))
- Open Babel (`sudo apt-get install openbabel`)

### Backend

```bash
# Clone the repository
git clone https://github.com/ayush00git/ProtPocket.git
cd ProtPocket

# Run the backend (port 8000)
go run main.go
```

### Frontend

```bash
cd app
npm install
npm run dev
# Runs at localhost:5173
# Proxies /api/* to localhost:8000
```

---
171 changes: 90 additions & 81 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/src/components/complex/MoleculePicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function MoleculePicker({
)}
</div>

<div className="max-h-80 overflow-y-auto">
<div className="max-h-80 overflow-y-auto scrollbar-hide">
{isLoading && (
<div className="flex flex-col items-center gap-2 py-8">
<div className="w-5 h-5 border-2 border-accent border-t-transparent rounded-full animate-spin" />
Expand Down
9 changes: 9 additions & 0 deletions app/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,12 @@
color: var(--text-muted) !important;
}

/* ═══ Hide native scrollbar ═══ */
.scrollbar-hide {
-ms-overflow-style: none; /* IE/Edge */
scrollbar-width: none; /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
display: none; /* Chrome/Safari/Opera */
}

Binary file added public/img/Q55DI5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/comparison.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/fragments.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/pocket-analysis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/ranking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.