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:

  1. Clone the theme repository:
git clone https://github.com/bloggrify/demo-mistral.git bloggrify
  1. Install the dependencies from the root of the project.
npm
npm install
yarn
yarn install
pnpm
pnpm install --shamefully-hoist
  1. Run the dev command to start Bloggrify in development mode:
npm
npm run dev
yarn
yarn dev
pnpm
pnpm 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.

  1. Create a new project with the following command:
npx create-nuxt-app bloggrify
  1. Add the required dependencies:
    "dependencies": {
        "@bloggrify/core": "latest",
        "nuxt": "3.11.2"
    },
  1. Edit the nuxt.config.ts file to extend the Bloggrify core engine:
    extends: [
        '@bloggrify/core',
    ],
  1. Create your own theme

Follow the theme creation guide to create your own theme.