Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jerrychong25/vue-nuxt-strapi-starter-blog
Vue Nuxt.js Strapi Starter Blog
https://github.com/jerrychong25/vue-nuxt-strapi-starter-blog
blog strapi vue vuejs vuejs2
Last synced: 2 months ago
JSON representation
Vue Nuxt.js Strapi Starter Blog
- Host: GitHub
- URL: https://github.com/jerrychong25/vue-nuxt-strapi-starter-blog
- Owner: jerrychong25
- Created: 2018-08-09T15:40:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-08T16:06:44.000Z (2 months ago)
- Last Synced: 2024-11-08T17:20:00.974Z (2 months ago)
- Topics: blog, strapi, vue, vuejs, vuejs2
- Language: JavaScript
- Homepage:
- Size: 9.57 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Strapi Starter Vue Blog
Vue starter for creating a blog with Strapi.
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)
![screenshot image](/screenshot.png)
### Deploy the backend
To deploy this Strapi instance you'll need:
- [An Heroku account](https://signup.heroku.com/) for free
- [A Cloudinary account for saving images](https://cloudinary.com/users/register/free) for freeOnce you have created these accounts you can deploy your instance by clicking on this button
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/strapi/strapi-starter-vue-blog)
### Deploy the frontend
**Netflify**
To deploy this Strapi instance you'll need:
- [A Netilfy account](https://app.netlify.com/signup) for free
Once you have created your account you can deploy your instance by clicking on this button.
[![Deploy](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/strapi/strapi-starter-vue-blog)
- Select a repository name and fill the API_URL with your Strapi instance on Heroku (eg: https://your-app.herokuapp.com) without the trailing slash
### Features
- 2 Content types: Article, Category
- Permissions set to `true` for article and category
- 2 Created articles
- 3 Created categories
- Apollo integration (GraphQL) for fetching data from strapi
- Responsive design using UIkit### Pages
- "/" display every articles
- "/article/:id" display one article
- "/category/:id" display articles depending on the category### Getting started
**Clone the repository and install dependencies**
```bash
git clone https://github.com/strapi/strapi-starter-vue-blog.git
cd strapi-starter-vue-blog
```### Start the backend server
```bash
cd backend# Using yarn
yarn
yarn develop# Using npm
npm install
npm run develop
```### Start the frontend server
```bash
cd frontend# Using yarn
yarn
yarn develop# Using npm
npm install
npm run develop
```Vue server is running here => [http://localhost:8080](http://localhost:8080)
Strapi server is running here => [http://localhost:1337](http://localhost:1337)Enjoy this starter