Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 619 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 619 Bytes

Music Mate

Find your music match according to your Spotify listenings.

Setup

Download Node.js. Run this followed commands :

Server

# Go to ./server folder
cd ./server

# Install dependencies (only the first time)
npm i

# Run the local server at localhost:8081
npm run dev

# Build for production in the dist/ directory
npm run build

Front

#Go to ./front folder
cd ./front

# Install dependencies (only the first time)
npm i

# Run the local server at localhost:8080
npm run dev

# Build for production in the dist/ directory
npm run build