Skip to content

decentraland/quests

Repository files navigation

Decentraland

Decentraland Quests

The Quests System is an important feature that facilitates users to explore the world, unlock achievements and potentially receive rewards. A quest is a series of steps or tasks that a user has to complete. Each step or task has an acceptance criteria to consider it as done. A quest designer has to define the steps and the order or the path to the end, so the quest is finished when those steps are completed.

Setup

Before start, make sure you have these installed:

Run

Before running the Quests server you need Postgres and Redis instances, you can start both by running:

$ make runservices

In order to run the Quests Server:

$ cargo run -p quests_server

Also, you can run it in watch mode by installing cargo-watch and using the command to run the server:

$ cargo install cargo-watch
$ cargo watch -x 'run -p quests_server'

Logging

The RUST_LOG environment variable can be used to specify the log level, for example:

$ RUST_LOG=debug cargo run -p quests_server

See these docs to understand the possible values.

Testing

You can use cargo test or leverage on the Makefile to guarantee services tear up and down (DB and Redis):

  • make tests: run all tests
  • make test-server: run server specific tests
  • make test-db: run database specific tests
  • make test-protocol: run protocol specific tests
  • make message-broker: run message broker specific tests
  • make test-system: run system specific tests

Architecture

Here is a highlevel architecture overview that can help to understand the project strucuture and components:

Quests

About

Decentraland's Quests System

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors 4

  •  
  •  
  •  
  •  

Languages