Expedite your next "Wikipedia rabbit-hole" by using this compiled database of over 300 million article relationships to interactively explore and traverse all of humanity's knowledge. https://wiki.danthebuilder.com
  • TypeScript 94%
  • JavaScript 3.3%
  • CSS 1.7%
  • HTML 1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-04-19 18:08:21 +02:00
backend Merge branch 'main' of https://github.com/dannydi12/wikigraph 2026-04-19 18:08:21 +02:00
data Delete data/README.md 2023-10-01 14:49:15 -07:00
frontend Another fix 2026-01-18 17:29:27 +01:00
.gitignore simplifying db schema and scaffolding 2023-09-23 17:13:08 -07:00
backlog.md backlog items 2023-09-23 16:22:19 -07:00
package-lock.json Fix to displaying 2026-01-18 16:12:44 +01:00
package.json finally using workspace 2023-09-17 16:57:37 -07:00
README.md Another fix 2026-01-18 17:29:27 +01:00
response_1768681550389.json Fix for Pisrs 2026-01-17 21:34:45 +01:00
yarn.lock Fix to displaying 2026-01-18 16:12:44 +01:00

PISRS Graf

Vizualizacija povezave med slovenskimi predpisi (PISRS - Pravno-informatski sistem Republike Slovenije)

Koda je narejena na osnovi repozitorija WikiGraph

Setup

  • Run yarn to install packages
  • Download pages multistream torrent from metawiki site
  • After unzipping, rename the file to wiki.xml and move it into the data folder for further processing
  • Then run yarn db:csv to convert the XML to CSV
  • Then run yarn db:init to build the database file
  • Then run sqlite3 wiki.db
    • .mode csv
    • .import links.csv links
    • run CREATE INDEX idx_from_title ON links (from_title);
  • Go to the backend folder
    • Add an .env file with a your DB's file path as the value for DB_FILE
    • Run yarn watch to start the server
  • Go to the frontend folder
    • Create a .env.local file with the following: VITE_API_URL=http://localhost:8000/api
    • Run yarn dev to start the website

Attribution

Koda je bazirana na WikiGraph - vizualizaciji povezav med Wikipedia članki.