Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thaddeusjiang/history_analytics
https://github.com/thaddeusjiang/history_analytics
browser-history metabase postgresql
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/thaddeusjiang/history_analytics
- Owner: ThaddeusJiang
- Created: 2024-09-26T10:15:03.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-04T04:00:07.000Z (3 months ago)
- Last Synced: 2024-12-01T01:50:40.784Z (about 1 month ago)
- Topics: browser-history, metabase, postgresql
- Language: TypeScript
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# History Analytics
- [x] History of Arc Browser
- [ ] History of Safari
- [ ] History of Chromium like Browsers
- [ ] macOS terminal## Made with
- [SQLite](https://www.sqlite.org/)
- [PostgreSQL](https://www.postgresql.org/)
- [pgloader](https://github.com/dimitri/pgloader)
- [Metabase](https://www.metabase.com/)# Preview
https://github.com/user-attachments/assets/bcc22c29-f48b-418a-a951-a5b9b82b3c30
## Prepare Data
1. copy Browser History
```sh
mkdir _data
cp ~/Library/Application\ Support/Arc/User\ Data/Default/History ./_data/arc/history.db
```2. create db
```sh
createdb arc_history_copypsql arc_history_copy < sql/psql_schema.sql
```3. load data
```sh
brew install pgloaderpgloader db.load
```## Start
```sh
docker compose up
```