VooSu - is an open system for messaging and collaboration, focused on simplicity and scalability.
- Linux
- Android 7.0+
- iOS 13.0+
- Web
- macOS Catalina 10.15+
- Windows 10+
You can build VooSu in two ways:
- Using Docker (recommended, isolated environment)
- On Host (from source) (requires system dependencies installed)
To build for Linux and Android using Docker:
docker build -f Dockerfile --target linux-build -t flutter-linux .
docker run --rm -e TARGETS=linux,android -v ./out:/opt/voo-su/out flutter-linuxTo build for Web:
docker build -f Dockerfile --target linux-build -t flutter-web .
docker run --rm -e TARGETS=web -v ./out:/opt/voo-su/out flutter-webBuilding for Windows requires a Windows host:
docker build -f Dockerfile-windows --target windows-build -t flutter-windows .
docker run --rm -v .\out:C:\voo-su\out flutter-windowsMinimum recommended version:
- Flutter 3.22.0
- Dart 3.4.0
git clone https://github.com/voo-su/app.git
cd app
flutter pub get
flutter build linux --release
flutter build macos --release
flutter build windows --release
flutter build apk --release
flutter build ios --release