Skip to content

Commit

Permalink
chore: Update subscribe text (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
eseidel authored Apr 21, 2023
1 parent bbb6abc commit 8c0d07a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'dart:convert';
import 'dart:io';

import 'package:artifact_proxy/artifact_proxy.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import 'dart:io';

import 'package:artifact_proxy/artifact_proxy.dart';
import 'package:artifact_proxy/src/artifact_manifest_client.dart';
import 'package:http/http.dart' as http;
import 'package:mocktail/mocktail.dart';
import 'package:test/test.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,13 @@ To subscribe, run ${lightCyan.wrap('shorebird account subscribe')}.
🎉 ${lightGreen.wrap('Welcome to Shorebird, ${newUser.displayName}!')}
🔑 Credentials are stored in ${lightCyan.wrap(auth.credentialsFilePath)}.
🚪 To logout, use: "${lightCyan.wrap('shorebird logout')}".
⬆️ To upgrade your account, use: "${lightCyan.wrap('shorebird account subscribe')}".
Enjoy! Please let us know via Discord if we can help.''',
A subscription is required to use Shorebird during the Trusted Tester program.
To subscribe, run ${lightCyan.wrap('shorebird account subscribe')}.
Please let us know via Discord if we can help!
${lightCyan.wrap('https://discord.com/invite/9hKJcWGcaB')}.
''',
);
return ExitCode.success.code;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ class SubscribeAccountCommand extends ShorebirdCommand

@override
String get summary => '''
A subscription is required to use Shorebird to create and publish apps.
Subscriptions are currently \$20 per month and are billed through Stripe.
Visit ${styleUnderlined.wrap(lightCyan.wrap('https://github.com/shorebirdtech/shorebird/blob/main/TRUSTED_TESTERS.md'))} to learn more.''';
A subscription to Shorebird's Trusted Tester program is required to publish
patches to your apps.
The subscription costs \$20 USD per month per user and is billed through Stripe.
Visit ${styleUnderlined.wrap(lightCyan.wrap('https://github.com/shorebirdtech/shorebird/blob/main/TRUSTED_TESTERS.md'))} for more details.''';

@override
Future<int> run() async {
Expand Down Expand Up @@ -88,8 +91,14 @@ ${lightCyan.wrap(paymentLink.toString())}
Once Stripe has processed your payment, you will be able to use Shorebird to create and publish apps.
${styleBold.wrap(red.wrap('Note: This payment link is specifically for ${styleItalic.wrap('your account')}. Do not share it with others.'))}''');
${styleBold.wrap(red.wrap('Note: This payment link is specifically for ${styleItalic.wrap('your account')}. Do not share it with others.'))}
Once you have completed your payment, please let us know on Discord or by
replying to your invite email, so that we can add you to the Trusted Tester
private Discord channel for live support.
Thanks for you help!
''');
return ExitCode.success.code;
}
}

0 comments on commit 8c0d07a

Please sign in to comment.