Setup

This article covers how to set up your development environment for this package.

Starting your development on this package is quite simple. You just need a local Nakama instance. This package provides an out of the box running docker-compose.yaml file.

Setup package + Nakama

Please notice, that this package only supports flutter ≥ 2!

Check out the git repo and cd to it.

# Check your local environment
flutter doctor -v

# Install the packages dependencies
flutter pub get

# Run your local Nakama instance
cd tools/nakama_server
docker-compose up

# Ready!
echo "Ready to go 🚀"

# Run the tests > should succeed with that default installation
flutter test

Last updated