With the following instructions, you can easily modify or completely turn around the APIIDA entirely transform the Boomi API Control Plane Developer Portal. As you like it.
Of course, if you want to do something completely your own, you can. https://demo.backend.apiida.io/swagger-ui/index.html
Technology and Prerequisites
Language and Framework
We use in combination the framework Vue and the language Typescript. The team is completed with Tailwind. Here is an example:
Code Block | ||
---|---|---|
| ||
<template>
<button type="button" class="rounded bg-indigo-500 py-1 px-2 text-xs font-semibold text-white shadow-sm hover:bg-indigo-400 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-500">Button text</button>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
props: {
// Type-Safe properties!
myComplexProperty: {
type: Object as PropType<MyInterface>,
required: true,
}
},
emits: [],
setup(props, { emit }) {
},
})
</script>
<style scoped>
</style> |
For storage we use Pinia.
Code Block | ||
---|---|---|
| ||
import { defineStore } from 'pinia';
import Plan from '../types/configuration/Plan';
const planStore = defineStore({
id: 'plan',
state: () => ({
plans: [] as Plan[],
}),
});
export default planStore; |
https://www.typescriptlang.org/ https://vuejs.org/ https://tailwindcss.com/ https://pinia.vuejs.org/ https://www.jetbrains.com/help/phpstorm/prettier.html https://prettier.io/ https://github.com/airbnb/javascript https://eslint.org/
Fork it!
https://github.com/apiida/obsidian-devportal https://docs.github.com/en/get-started/quickstart/fork-a-repo
In the README.dm you will find further instructions on how to start and configure your developer portal locally.
Note |
---|
To get access, please contact our support. https://support.apiida.com |
Do not forget to create your Developer Portal in the Control Plane Administration Portal. You have to enter the URL of the developer portal there and get the token from there that you have to enter in your developer portal.This is also useful when you need to integrate the functionality of the Developer Portal into your own processes. Info
Page Tree | ||||
---|---|---|---|---|
|