This repository is a mono repo containing two projects: a Strapi CRM and a Nuxt.js frontend. The blog can be found at willbaker.tech.
- CRM - A Strapi CRM
- Frontend - A Nuxt.js app using SSR
To get started with either of the projects, follow the instructions below.
The CRM is built using Strapi, a headless CMS. To set it up:
- Navigate to the
crm
directory:cd crm
- Install the dependencies:
npm install
- Start the development server:
npm run develop
The frontend is built using Nuxt.js with Server-Side Rendering (SSR). To set it up:
- Navigate to the
frontend
directory:cd frontend
- Install the dependencies:
npm install
- Start the development server:
npm run dev