Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romaindoyen/musicplayer
Simple music player
https://github.com/romaindoyen/musicplayer
prisma-orm reactjs scss supabase vitejs
Last synced: 14 days ago
JSON representation
Simple music player
- Host: GitHub
- URL: https://github.com/romaindoyen/musicplayer
- Owner: RomainDoyen
- Created: 2023-12-27T16:04:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-30T15:42:11.000Z (about 1 year ago)
- Last Synced: 2024-11-27T11:46:03.459Z (2 months ago)
- Topics: prisma-orm, reactjs, scss, supabase, vitejs
- Language: JavaScript
- Homepage: https://appmusicplayer.vercel.app
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
MUSICPLAYER◦ Simple music player
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
---
## 📖 Table of Contents
- [📖 Table of Contents](#-table-of-contents)
- [📍 Overview](#-overview)
- [📦 Features](#-features)
- [📂 Repository Structure](#-repository-structure)
- [📋 Requirements](#-requirements)
- [🚀 Getting Started](#-getting-started)
- [🔧 Installation](#-installation)
- [🤖 Running musicplayer](#-running-musicplayer)
- [Prisma init](#prisma-init)
- [Prisma migrate](#prisma-migrate)
- [Prisma generate](#prisma-generate)
- [Prisma seed](#prisma-seed)---
## 📍 Overview
---
## 📦 Features
---
## 📂 Repository Structure
```sh
└── musicplayer/
├── .eslintrc.cjs
├── index.html
├── package-lock.json
├── package.json
├── prisma/
│ ├── migrations/
│ │ ├── 20231228062623_initial_migration/
│ │ ├── 20231228062928_initial_migration/
│ │ ├── 20231228063736_initial_migration/
│ │ └── migration_lock.toml
│ ├── schema.prisma
│ └── seed.js
├── public/
├── src/
│ ├── App.jsx
│ ├── components/
│ │ └── MusicPlayer.jsx
│ ├── main.jsx
│ ├── pages/
│ │ └── Home.jsx
│ └── styles/
│ ├── _settings.scss
│ ├── components/
│ └── index.scss
└── vite.config.js```
---
## 📋 Requirements
---
## 🚀 Getting Started
### 🔧 Installation
1. Clone the musicplayer repository:
```sh
git clone https://github.com/RomainDoyen/musicplayer.git
```2. Change to the project directory:
```sh
cd musicplayer
```3. Copy the `.env.example` file to `.env`:
```sh
cp .env.example .env
```4. Install the dependencies:
```sh
npm install
```### 🤖 Running musicplayer
```sh
nmp run dev
```### Prisma init
```sh
npx prisma init
```
### Prisma migrate```sh
npx prisma migrate dev --name init
```
### Prisma generate```sh
npx prisma generate
```
### Prisma seed
```sh
npx prisma db seed --preview-feature
```---
[**Return**](#Top)
---