
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@marklogic-community/grove-vue-template
Advanced tools
Project template for Grove stack including:
Follow the instructions in the Grove Getting Started Guide in order to create a new Grove project.
When asked which UI you prefer, select "Vue". Follow the in-console instructions to configure and run your application.
To install dependencies:
npm install
To create shared configuration between the three tiers (marklogic, middle-tier, and ui):
grove config
To run the tests:
npm test
To start a development server at localhost:3000:
npm start
Note that preferred way to install this template is using the grove-cli. Follow the instructions in the Grove Getting Starters Guide in order to create a new Grove project using grove-cli.
These are instructions for manually installing this template.
This template currently uses git submodules. You can clone it recursively using:
git clone --recurse-submodules https://github.com/marklogic-community/grove-vue-template.git {your-app-name}cd {your-app-name}This gives you the master branch of the template, and its submodules. Use this to get the development branch instead:
git clone -b development --recurse-submodules https://github.com/marklogic-community/grove-vue-template.git {your-app-name}cd {your-app-name}Consider running the following once if you suspect there are newer commits to the branches, that you'd like to pull in:
git submodule update --remote --rebaseIt is recommended that you 'eject' from the Grove code repos after cloning this template, meaning you remove the git tracking from your local copy. You can do that with:
rm -rf .git .gitmodules */.gitYou can then move the contents to a directory that is tracked by a different git project already, or initialize the newly created directory with a new local git repository:
git initgit add .git commit -m "initial commit"In case you don't eject, you might want to occasionally check for updates, and merge them with your local setup. You can do so for all submodules using:
git submodule update --remote --rebaseIt will warn for conflicts with local changes. Append the name of a submodule in case you'd like to run it for just one of them.
You should use the grove-cli to configure the application by running grove config. Further customization can be done manually in marklogic/gradle{-local}.properties and middle-tier/.env{.local|development|production}.
Run npm install in this directory, which will also run it within the ui and middle-tier directories.
Load sample data:
cd marklogic./gradlew mlDeploy loadSampleDataRun npm start in this directory, which will start the middle-tier and the ui. A browser window should open automatically (at localhost:8080)
Look inside the subfolder READMEs for more detailed instructions.
For more background on git submodules, see:
FAQs
Vue template for MarkLogic Grove
The npm package @marklogic-community/grove-vue-template receives a total of 10 weekly downloads. As such, @marklogic-community/grove-vue-template popularity was classified as not popular.
We found that @marklogic-community/grove-vue-template demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.