Skip to content

Commit

Permalink
chore(app): use HPI-network deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Aug 4, 2023
1 parent 1a70b04 commit 80f9739
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/lib/common/constants.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';

Uri anniUrl([String slug = '']) => Uri.http('localhost:3002', 'api/v1/$slug');
Uri anniUrl([String slug = '']) =>
Uri.http('vm-slosarek01.dhclab.i.hpi.de:8000', 'api/v1/$slug');
Uri labServerUrl([String slug = '']) =>
Uri.http('localhost:3001', 'api/v1/$slug');
Uri.http('vm-slosarek01.dhclab.i.hpi.de:8081', 'api/v1/$slug');
Uri keycloakUrl([String slug = '']) =>
Uri.http('localhost:28080', 'auth/$slug');
Uri.http('vm-slosarek01.dhclab.i.hpi.de:28080', 'auth/$slug');

// Note that sending emails will not work on the iPhone Simulator since it does
// not have any email application installed.
Expand Down

0 comments on commit 80f9739

Please sign in to comment.