https://github.com/preprio/vue-quick-start
The Vue Quick Start package covers the basics of connecting Prepr CMS with Vue. With the provided steps, you can make a basic blog in less than 10 minutes.
https://github.com/preprio/vue-quick-start
vue-starter vuejs
Last synced: 3 months ago
JSON representation
The Vue Quick Start package covers the basics of connecting Prepr CMS with Vue. With the provided steps, you can make a basic blog in less than 10 minutes.
- Host: GitHub
- URL: https://github.com/preprio/vue-quick-start
- Owner: preprio
- Created: 2023-06-09T11:44:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T00:15:06.000Z (about 1 year ago)
- Last Synced: 2025-02-28T21:04:39.355Z (3 months ago)
- Topics: vue-starter, vuejs
- Language: JavaScript
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue Quick Start
The Vue quick start project launches a blog app with content from Prepr.Check out the [Stackblitz demo](https://stackblitz.com/edit/vue-quick-start) for zero installation.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Add the environment file
Copy the .env.example file in this directory to .env (which will be ignored by Git) by running the following command:
```bash
cp .env.example .env
```## Update the environment file
In the .env file replace `` with the Prepr access token from your environment with demo content.## Development Server
Start the development server on http://localhost:5173
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Check out the [deployment documentation](https://cli.vuejs.org/guide/deployment.html) for more information.
## The end result
