Fork expose

This commit is contained in:
René Preuß
2022-07-07 22:27:23 +02:00
parent da82980286
commit 814eb964d5
11 changed files with 21 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ use Symfony\Component\Console\Output\ConsoleOutput;
abstract class ServerAwareCommand extends Command
{
const DEFAULT_HOSTNAME = 'sharedwithexpose.com';
const DEFAULT_HOSTNAME = 'bitinflow.dev';
const DEFAULT_PORT = 443;
const DEFAULT_SERVER_ENDPOINT = 'https://expose.dev/api/servers';
@@ -45,7 +45,7 @@ abstract class ServerAwareCommand extends Command
/**
* Try to find the server in the servers array.
* If no array exists at all (when upgrading from v1),
* always return sharedwithexpose.com.
* always return bitinflow.dev.
*/
if (config('expose.servers') === null) {
return static::DEFAULT_HOSTNAME;
@@ -70,7 +70,7 @@ abstract class ServerAwareCommand extends Command
/**
* Try to find the server in the servers array.
* If no array exists at all (when upgrading from v1),
* always return sharedwithexpose.com.
* always return bitinflow.dev.
*/
if (config('expose.servers') === null) {
return static::DEFAULT_PORT;