Carnival Vue is a demonstration web application that exercises parts of the Carnival framework including graph model validation.
- Install npm.
- Install Vue CLI.
- Install Carnival Micronaut.
git clone https://github.com/augustearth/carnival-vue.git
cd carnival-vue
npm install
npx vue-cli-service serve --port=7001
- Go to
http://localhost:7001/
. - Type
Person
in the Label field and click Create. - You should see a new vertex with label 'Person' and a constraint error.
- Type
Application
in the Label field and click Create. - You should see a new vertex with label 'Applicatio' and a model error.
Default port (8080):
npm run serve
Custom port:
npx vue-cli-service serve --port=7001
npm run build
npm run lint
vue ui