- Notifications
You must be signed in to change notification settings - Fork27
dgraph-io/graphoverflow
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
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
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.
- 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.
- You may also have to read the
syntax_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. - Run
npm install
in the root directory. - Run
npm install
in the/client
directory. - In the root directory, run
npm run dev
.
You can also instead of steps 2, 3, and 4, you can just run sh ./run.sh
We have a dockerized env so you can run this project.
- 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.
- Now go to localhost:3000 or the IP if you are running docker in a VM.
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.
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
This app is currently compatible with Dgraph v20.xx.x
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.
Choose, download and unarchive a data dump fromhttps://archive.org/details/stackexchange, for examplelifehacks.stackexchange.com.7z
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
Run theschema mutation
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
- React
- node.js
- Dgraph
UsingStack Exchange data dump underAttribution-Share Alike 3.0
MIT
About
Run the entire StackOverflow on Dgraph. Work in progress.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors6
Uh oh!
There was an error while loading.Please reload this page.