dnd-and-graph-databases
Repository for my upcoming talk "Dungeon, Dragons, and Graph Databases".
File Explorer
Download Latest Version (.zip)- .gitkeep
- .gitignore
- docker-compose.yml
- README.md
- queries.js
- redis-executor.js
- dungeon.js
- monster.js
- name-generator.js
- randomizer.js
- room.js
- treasure.js
- .gitignore
- .nvmrc
- demo.js
- package-lock.json
- package.json
- queries.txt
- server.js
- dungeons-dragons-and-graph-databases.pdf
- .gitignore
- ABSTRACT.md
- package-lock.json
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/guyroyse/dnd-and-graph-databases
Downloads the entire project code from GitHub to your computer.
cd dnd-and-graph-databases
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker compose -f code/docker/docker-compose.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
cd code
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
