Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Run the entire StackOverflow on Dgraph. Work in progress.

NotificationsYou must be signed in to change notification settings

dgraph-io/graphoverflow

Repository files navigation

A blazingly fast Stack Overflow clone running the real Stack Exchange dataset.

NOTE: The repository is no longer being actively maintained by the Dgraph team. If something is broken, we'd happily accept a pull request from you, but won't fix anything ourselves.

UPDATE: This project is properly updated to work with version 20.xx.x of Dgraph. It's working as expected on macOS and Linux. There are some problems running the project on Windows, that can be solved by starting JS server and JS client separately. See "syntax_changed.md" for detailed instructions

Running locally

First Thing first

Before starting, make sure that Dgraph is running on default ports (8080, 9080 ...)Then go to Ratel UI or by cURL and set the Schema in the schema.txt file. Without thisit won't work.

Avoid to use ACL with this project.

Node

  1. You have to open Ratel UI, go to the panel schema. Then click in "Bulk Edit". And paste the file "schema.txt" in this repository.
  2. You may also have to read thesyntax_changes.md. Cuz you may need to create a fake user if you don't wanna import the dataset we provide. You gonna run a "clean" GraphOverflow. And also workaround some bugs in Windows.
  3. Runnpm install in the root directory.
  4. Runnpm install in the/client directory.
  5. In the root directory, runnpm run dev.

You can also instead of steps 2, 3, and 4, you can just run sh ./run.sh

Docker Compose

We have a dockerized env so you can run this project.

  1. Run Docker-composer

The first build will take time.

docker-compose up            # In the first timeordocker-compose up --build    # If you wanna rebuild it

The compose has a script that will prepare everything for you. You might wait for the deployment to be done and updated the page if so.

  1. Now go to localhost:3000 or the IP if you are running docker in a VM.

If anything goes wrong

If the page loads but keeps showing the animated loader. It means that something goes wrong. You should see a loaded site with empty questions.

You don't need to do much when running this docker-compose. In general, if you are running docker in a VM the IP is 192.168.99.100 (between 99 and 199, you can check it via docker-machine). In that case, you gonna need to change all addresses in the code from localhost or 127.0.0.1 to the VM IP.

Paths you might change:
app/client/src/lib/helpers.js
app/helpers.js

Pay attention that this docker-composer will create a volume in your docker env.

If your docker is binded to localhost. Don't change anything.

Clean up docker.

docker-compose downordocker-compose rm

and

docker stop $(docker ps -a -q)docker rm $(docker ps -a -q)docker volume lsdocker volume rm graphoverflow_dgraph

Dgraph

This app is currently compatible with Dgraph v20.xx.x

  1. Run Docker

    docker run -it -p 8080:8080 -p 9080:9080 \-v ~/dgraph:/dgraph --name dgraph dgraph/dgraph:v20.03.1 \dgraph alpha --bindall=true

    PS. You can also run this project with Dgraph binaries instead of Docker.

  2. Choose, download and unarchive a data dump fromhttps://archive.org/details/stackexchange, for examplelifehacks.stackexchange.com.7z

  3. Convert stackexchange data from relation to graph. From the current directory:

    for category in comments posts tags users votes; do go run $category/main.go -dir="$HOME/Downloads/lifehacks.stackexchange.com" -output="/$HOME/dgraph/$category.rdf.gz"; done
  4. Run theschema mutation

  5. Load graph data files into Dgraph. From the current directory:

    for category in comments posts tags users votes; do docker exec -it dgraph dgraphloader -r $category.rdf.gz; done

Stack

  • React
  • node.js
  • Dgraph

Attribution

UsingStack Exchange data dump underAttribution-Share Alike 3.0

License

MIT

About

Run the entire StackOverflow on Dgraph. Work in progress.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors6


[8]ページ先頭

©2009-2025 Movatter.jp