mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-06-26 15:51:02 -04:00
set default port to 5150 for veilid-server in config
improve testing fixtures
This commit is contained in:
parent
a1b6da5ab4
commit
55de1dcb5c
6 changed files with 28 additions and 9 deletions
|
@ -112,7 +112,12 @@ class _MyAppState extends State<MyApp> with UiLoggy {
|
|||
Future<void> toggleStartup(bool startup) async {
|
||||
if (startup && !_startedUp) {
|
||||
var config = await getDefaultVeilidConfig(
|
||||
isWeb: kIsWeb, programName: 'Veilid Plugin Example');
|
||||
isWeb: kIsWeb,
|
||||
programName: 'Veilid Plugin Example',
|
||||
// ignore: avoid_redundant_argument_values, do_not_use_environment
|
||||
bootstrap: const String.fromEnvironment('BOOTSTRAP'),
|
||||
// ignore: avoid_redundant_argument_values, do_not_use_environment
|
||||
networkKeyPassword: const String.fromEnvironment('NETWORK_KEY'));
|
||||
// ignore: do_not_use_environment
|
||||
if (const String.fromEnvironment('DELETE_TABLE_STORE') == '1') {
|
||||
config = config.copyWith(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue