Giter Site home page Giter Site logo

fridolinf / music-vpinia-app Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 452 KB

a website to create and listen to music playlists from whoever uploaded them like spotify.

Home Page: https://music-vpinia-p7dkderyd-fridolinf.vercel.app/

JavaScript 79.29% HTML 0.32% Vue 19.68% CSS 0.71%
e2e pinia vee-validate vue-i18n vuejs vuejs3 cypress firebase firebase9 vite vitest cypress-example music-web-app vue-unit-tests vite-pwa vue-pwa

music-vpinia-app's Introduction

Music WebApp with Vuejs3, Pinia, and Firebase 9

music-v-pinia

Feel free to clone this project especially for frontend programmers who like or want to learn and deepen about vuejs3 and pinia state management.

✨Features

  • CRUD data with Firebase 9 and Pinia
  • Authenticate and Authorization
  • Infinity scroll
  • Example unit test with Vitest
  • Example e2e with Cypress
  • PWA with Vite
  • Much inline comment for help who read this project
  • Internationalization translate words and format currency with Vue-i18n
  • Form validation with Vee-validate
  • State management with Pinia
  • and more...

🚀 Demo

https://music-vpinia-p7dkderyd-fridolinf.vercel.app/

Project Screenshots:

project-screenshot

🛠️ Installation Steps:

1. clone project

https://github.com/fridolinf/music-vpinia-app.git

2. install package

npm install

3. environtment configuration

remove .example from .env.example and insert your key

4. setup firebase firestore database

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read: if true;
      allow write: if request.auth.uid == resource.data.uid;
      allow create: if request.auth != null;
      allow delete: if request.auth.uid == resource.data.uid;
    }
  }
}

5. setup firebase storage

rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
    	allow read: if true;
      allow write: if request.auth != null && 
      		     request.resource.contentType == "audio/mpeg" && 
                     request.resource.size < 10 * 1024 * 1024;
  		allow delete: if request.auth != null;
    }
  }
}

6. run local

npm run dev

💻 Built with

Technologies used in the project:

  • Vuejs3
  • Pinia
  • Firebase 9
  • Cypress
  • Vite
  • Vitest
  • Vue-i18n
  • Tailwindcss

music-vpinia-app's People

Contributors

fridolinf avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.