2023-03-27 08:44:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Seeders;
|
|
|
|
|
|
|
|
use App\Models\Application;
|
2023-03-28 10:09:34 +00:00
|
|
|
use App\Models\GithubApp;
|
2023-03-27 12:31:42 +00:00
|
|
|
use App\Models\StandaloneDocker;
|
2023-03-27 08:44:31 +00:00
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class ApplicationSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*/
|
|
|
|
public function run(): void
|
|
|
|
{
|
2023-03-27 16:14:33 +00:00
|
|
|
Application::create([
|
2024-03-06 14:34:21 +00:00
|
|
|
'name' => 'NodeJS Fastify Example',
|
2023-08-25 10:40:53 +00:00
|
|
|
'fqdn' => 'http://nodejs.127.0.0.1.sslip.io',
|
2023-05-11 13:20:02 +00:00
|
|
|
'repository_project_id' => 603035348,
|
2023-03-28 13:47:37 +00:00
|
|
|
'git_repository' => 'coollabsio/coolify-examples',
|
2024-03-06 14:34:21 +00:00
|
|
|
'git_branch' => 'main',
|
|
|
|
'base_directory' => '/nodejs',
|
2023-03-28 13:47:37 +00:00
|
|
|
'build_pack' => 'nixpacks',
|
|
|
|
'ports_exposes' => '3000',
|
2023-08-07 16:46:40 +00:00
|
|
|
'environment_id' => 1,
|
2023-08-11 14:13:53 +00:00
|
|
|
'destination_id' => 0,
|
2023-03-27 12:31:42 +00:00
|
|
|
'destination_type' => StandaloneDocker::class,
|
2023-11-03 14:11:06 +00:00
|
|
|
'source_id' => 1,
|
2024-06-10 20:43:34 +00:00
|
|
|
'source_type' => GithubApp::class,
|
2023-08-11 20:41:47 +00:00
|
|
|
]);
|
|
|
|
Application::create([
|
2024-03-06 14:34:21 +00:00
|
|
|
'name' => 'Dockerfile Example',
|
2023-08-25 10:40:53 +00:00
|
|
|
'fqdn' => 'http://dockerfile.127.0.0.1.sslip.io',
|
2023-08-11 20:41:47 +00:00
|
|
|
'repository_project_id' => 603035348,
|
|
|
|
'git_repository' => 'coollabsio/coolify-examples',
|
2024-03-06 14:34:21 +00:00
|
|
|
'git_branch' => 'main',
|
|
|
|
'base_directory' => '/dockerfile',
|
2023-08-11 20:41:47 +00:00
|
|
|
'build_pack' => 'dockerfile',
|
2023-10-20 10:34:53 +00:00
|
|
|
'ports_exposes' => '80',
|
2023-08-11 20:41:47 +00:00
|
|
|
'environment_id' => 1,
|
|
|
|
'destination_id' => 0,
|
|
|
|
'destination_type' => StandaloneDocker::class,
|
|
|
|
'source_id' => 0,
|
2024-06-10 20:43:34 +00:00
|
|
|
'source_type' => GithubApp::class,
|
2023-03-27 08:44:31 +00:00
|
|
|
]);
|
2023-08-25 10:40:53 +00:00
|
|
|
Application::create([
|
2024-03-06 14:34:21 +00:00
|
|
|
'name' => 'Pure Dockerfile Example',
|
2023-08-25 10:40:53 +00:00
|
|
|
'fqdn' => 'http://pure-dockerfile.127.0.0.1.sslip.io',
|
|
|
|
'git_repository' => 'coollabsio/coolify',
|
|
|
|
'git_branch' => 'main',
|
|
|
|
'git_commit_sha' => 'HEAD',
|
|
|
|
'build_pack' => 'dockerfile',
|
|
|
|
'ports_exposes' => '80',
|
|
|
|
'environment_id' => 1,
|
|
|
|
'destination_id' => 0,
|
|
|
|
'destination_type' => StandaloneDocker::class,
|
|
|
|
'source_id' => 0,
|
|
|
|
'source_type' => GithubApp::class,
|
|
|
|
'dockerfile' => 'FROM nginx
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|
2024-06-10 20:43:34 +00:00
|
|
|
',
|
2023-08-25 10:40:53 +00:00
|
|
|
]);
|
2023-03-27 08:44:31 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|