Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/strapi/strapi-starter-vue-blog
Strapi Starter Vue Blog
https://github.com/strapi/strapi-starter-vue-blog
Last synced: 5 days ago
JSON representation
Strapi Starter Vue Blog
- Host: GitHub
- URL: https://github.com/strapi/strapi-starter-vue-blog
- Owner: strapi
- Archived: true
- Created: 2020-02-13T13:21:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-29T09:27:55.000Z (about 4 years ago)
- Last Synced: 2024-08-01T16:30:17.697Z (3 months ago)
- Language: Vue
- Homepage: https://strapi.io/blog/build-a-blog-with-vue-strapi-and-apollo
- Size: 14.1 MB
- Stars: 66
- Watchers: 21
- Forks: 24
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> **Warning :warning:**
>
> This starter is deprecated.
>
> Instead, we recommend that you use our other Vue blog starters with better SEO support:
>
> * [**strapi-starter-gridsome-blog**](https://github.com/strapi/strapi-starter-gridsome-blog)
> * [**strapi-starter-nuxt-blog**](https://github.com/strapi/strapi-starter-nuxt-blog)# Strapi Starter Vue Blog
Vue starter for creating a blog with Strapi.
![screenshot image](/screenshot.png)
This starter allows you to try Strapi with Vue with the example of a simple blog. It is fully customizable and due to the fact that it is open source, fully open to contributions. Do not hesitate to add new features etc ...
You may want to know how to develop such a starter by your own! This starter is actually the result of this [tutorial](https://strapi.io/blog/build-a-blog-with-vue-strapi-and-apollo)
## Features
- 2 Content types: Article, Category
- 2 Created articles
- 3 Created categories
- Permissions set to `true` for article and category
- Responsive design using UIkitPages:
- "/" display every articles
- "/article/:id" display one article
- "/category/:id" display articles depending on the category## Getting started
### Backend
See full instructions [here](https://github.com/strapi/strapi-legacy-blog)
### Frontend
Start by installing the starter:
```bash
git clone https://github.com/strapi/strapi-starter-vue-blog.git
cd strapi-starter-vue-blog
```Then start the frontend server:
```bash
# Using yarn
yarn install
yarn develop# Using npm
npm install
npm run develop# Create a .env file containing the VUE_APP_STRAPI_API_URL variable
echo "VUE_APP_STRAPI_API_URL=http://localhost:1337" >> .env
```Vue server is running here => [http://localhost:8080](http://localhost:8080)
Enjoy this starter!