https://github.com/datomo/strapi-nuxt-boilerplate
https://github.com/datomo/strapi-nuxt-boilerplate
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/datomo/strapi-nuxt-boilerplate
- Owner: datomo
- Created: 2021-01-31T19:34:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-31T20:33:45.000Z (over 5 years ago)
- Last Synced: 2025-06-04T17:13:13.517Z (12 months ago)
- Language: JavaScript
- Size: 202 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README nuxt-strapi-boilerplate
This project consists of two seperate parts.
For one the `backend` which handles the content, mainly text written in Markdown and images.
The `frontent` is built on NuxtJS and handles the websites interaction part.
This code is part of the tutorial, which can be found here:
[Strapi and NuxtJS Webapplication](https://blog-lengweiler.com/strapi-and-nuxt-webapplication/)
## Table of Contents
- [Development](#development)
## Development
The development need both part of the project to be running.
### Backend
The `backend` can be started by exectuting following commands:
```
cd backend
npm install // install the dependencies, needed only for the first time
npm run develop
```
### Frontend
The `frontend` can be started by exectuting following commands:
```
cd frontend
npm install // install the dependencies, needed only for the first time
npm run dev
```