Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/wiki/Home.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FlutterProbe Wiki

Welcome to the FlutterProbe wiki. This documentation covers architecture details, development guides, and operational procedures that complement the main docs at [flutterprobe.com](https://flutterprobe.dev).
Welcome to the FlutterProbe wiki. This documentation covers architecture details, development guides, and operational procedures that complement the main docs at [flutterprobe.dev](https://flutterprobe.dev).

## Quick Links

Expand Down
4 changes: 2 additions & 2 deletions vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Sidebar tree view of all tests and recipes in your workspace:

```bash
# macOS / Linux
curl -fsSL https://flutterprobe.com/install.sh | sh
curl -fsSL https://flutterprobe.dev/install.sh | sh

# Or build from source
git clone https://github.com/AlphaWaveSystems/flutter-probe.git
Expand All @@ -120,7 +120,7 @@ dependencies:
3. Initialize the agent in your `main.dart`:

```dart
import 'package:probe_agent/probe_agent.dart';
import 'package:flutter_probe_agent/flutter_probe_agent.dart';

void main() {
ProbeAgent.start(); // Only active in debug/profile builds
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Three primary options exist for Flutter E2E testing:
Install the FlutterProbe CLI:

```bash
curl -sSL https://get.flutterprobe.com | sh
curl -sSL https://flutterprobe.dev/install | sh
```

Add the FlutterProbe Dart agent to your app's dev dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
flutter-version: '3.27.0'
- name: Install FlutterProbe
run: |
curl -sSL https://get.flutterprobe.com | sh
curl -sSL https://flutterprobe.dev/install | sh
- name: Build and test
run: |
flutter build apk --debug
Expand Down
Loading