đŸ•šī¸
Flutter Nakama
  • Overview
  • Installation & Setup
  • Authentication
  • Realtime Chat
  • Storage Engine
  • Examples
    • Minimal example
  • Development
    • Setup
Powered by GitBook
On this page

Was this helpful?

  1. Development

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
PreviousMinimal example

Last updated 3 years ago

Was this helpful?