⚡ Quick Start
Get up and running with Vue Quotes in minutes!
📋 Prerequisites
Before you begin, ensure you have:
- 📦 Node.js 16.0 or higher
- 🔧 npm or yarn or pnpm package manager
🚀 Installation
1️⃣ Get the Code
bash
git clone https://github.com/EduardoProfe666/vue-quotes.git
cd vue-quotes
2️⃣ Install Dependencies
bash
npm install
bash
yarn install
bash
pnpm install
3️⃣ Start Development Server
bash
npm run dev
bash
yarn run dev
bash
pnpm run dev
4️⃣ Deploy it anywhere
You can self-host this app by building it (and check its preview):
bash
npm run build
# If you want to preview the build
npm run preview
bash
yarn run build
# If you want to preview the build
yarn run preview
bash
pnpm run build
# If you want to preview the build
pnpm run preview
You also can free deploy it on Render, Github Pages, Vercel, Netlify or other hosting you love.
⚙️ Basic Configuration
1️⃣ Open Configuration File
Navigate to /src/data/data.ts
2️⃣ Configure Basic Settings
ts
export const generals: GeneralsSchema = {
title: 'My Quotes',
randomPhrases: false,
internationalizationEnabled: true
}
3️⃣ Add Your Quotes
ts
export const phrases: PhraseSchema[] = [
{
message: [
{languageId: 'en', message: 'Hello World!'},
{languageId: 'es', message: '¡Hola Mundo!'}
],
footer: 'Developer'
}
]
4️⃣ Set Up Languages
ts
export const languages: LanguageSchema[] = [
{id: 'en', name: 'English'},
{id: 'es', name: 'Español'}
]
🎯 Next Steps
Essential Configuration
Advanced Features
- 🌐 Set up internationalization
- 🖼️ Configure image export
- 🎯 Customize UI elements
🤝 Need Help?
- 📖 Check our detailed documentation
- 💡 View examples
- 🐛 Report issues on GitHub