Fix styling

This commit is contained in:
Thijmen
2024-06-10 20:43:34 +00:00
committed by github-actions[bot]
parent 41fb6a1fc9
commit d86274cc37
429 changed files with 5307 additions and 2831 deletions

View File

@@ -27,7 +27,7 @@ class ApplicationSeeder extends Seeder
'destination_id' => 0,
'destination_type' => StandaloneDocker::class,
'source_id' => 1,
'source_type' => GithubApp::class
'source_type' => GithubApp::class,
]);
Application::create([
'name' => 'Dockerfile Example',
@@ -42,7 +42,7 @@ class ApplicationSeeder extends Seeder
'destination_id' => 0,
'destination_type' => StandaloneDocker::class,
'source_id' => 0,
'source_type' => GithubApp::class
'source_type' => GithubApp::class,
]);
Application::create([
'name' => 'Pure Dockerfile Example',
@@ -60,7 +60,7 @@ class ApplicationSeeder extends Seeder
'dockerfile' => 'FROM nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
'
',
]);
}
}