Installation
First method, start from a theme
To start a new blog with Bloggrify, you have to choose a theme to start with.
You can start with "Mistral", the default template. It is a simple and clean template but you can also look at the other templates available.
Once you have chosen a template, you can start a new project with the following command:
- Clone the theme repository:
git clone https://github.com/bloggrify/demo-mistral.git bloggrify
- Install the dependencies from the root of the project.
npm
npm install
- Run the
dev
command to start Bloggrify in development mode:
npm
npm run dev
✨ Well done! A browser window should automatically open for http://localhost:3000
Second method, start from scratch
Let's start a new project from scratch.
- Create a new project with the following command:
npx create-nuxt-app bloggrify
- Add the required dependencies:
"dependencies": {
"@bloggrify/core": "latest",
"nuxt": "3.11.2"
},
- Edit the
nuxt.config.ts
file to extend the Bloggrify core engine:
extends: [
'@bloggrify/core',
],
- Create your own theme
Follow the theme creation guide to create your own theme.
Table of Contents