mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-13 09:13:01 +02:00
19 lines
401 B
Vue
19 lines
401 B
Vue
<template>
|
|
<div>
|
|
<p>
|
|
Download OpenStack credentials from the OpenStack dashboard->Compute->API Access and source it in the shell (eg:
|
|
source /tmp/dhc-openrc.sh)
|
|
</p>
|
|
<button v-on:click="submit" class="btn btn-primary" type="button">Next</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
methods: {
|
|
submit() {
|
|
this.$emit("submit");
|
|
}
|
|
}
|
|
};
|
|
</script>
|