Files
mixtape/zero.Backoffice.UI/_notimplemented/setup/Steps/step-database.vue
T
2021-12-07 01:11:18 +01:00

35 lines
880 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="setup-step setup-step-database">
<h2>database configuration</h2>
<p>Zero uses <b>RavenDB</b> as its database. If you want a more sophisticated setup (i.e. cluster) you can override the IDocumentStore service which is registered as a singleton.</p>
<ui-property label="Instance URL" :vertical="true">
<input v-model="value.database.url" type="text" class="ui-input" placeholder="Enter URL to the Raven instance" />
</ui-property>
<ui-property label="Database name" :vertical="true">
<input v-model="value.database.name" type="text" class="ui-input" placeholder="Name of the existing database" />
</ui-property>
</div>
</template>
<script>
export default {
name: 'setupStepDatabase',
props: {
value: Object
},
mounted ()
{
},
methods: {
}
}
</script>