Basic seeder, navigating to application page
This commit is contained in:
23
resources/js/pages/Applications/Show.vue
Normal file
23
resources/js/pages/Applications/Show.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<script setup lang="ts">
|
||||
import AppLayout from '@/layouts/AppLayout.vue';
|
||||
import { type BreadcrumbItem } from '@/types';
|
||||
import { Head } from '@inertiajs/vue3';
|
||||
import PlaceholderPattern from '../components/PlaceholderPattern.vue';
|
||||
|
||||
const props = defineProps({
|
||||
application: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Head title="Dashboard" />
|
||||
|
||||
<AppLayout>
|
||||
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
|
||||
{{ application }}
|
||||
</div>
|
||||
</AppLayout>
|
||||
</template>
|
||||
@@ -22,7 +22,7 @@ const breadcrumbs: BreadcrumbItem[] = [
|
||||
<div>Applications have environments</div>
|
||||
<div>Servers have services</div>
|
||||
<div>Services have slices, this could be a database table or a client in a websocket server</div>
|
||||
<div>Environments have SLICES</div>
|
||||
<div>Environments have SLICES</div>
|
||||
<div>Also servers need to be provisioned</div>
|
||||
<div>Users have SSH keys</div>
|
||||
<div>Keystone has its own SSH keys</div>
|
||||
|
||||
Reference in New Issue
Block a user